Skip to content

Commit

Permalink
fix:DX-1936; RHCP scroll issue
Browse files Browse the repository at this point in the history
  • Loading branch information
okorie2 committed Nov 20, 2024
1 parent c175229 commit 38dd334
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,16 @@ body {
-webkit-font-smoothing: antialiased;
transition: background 0.2s ease-in-out;
font-family: "GothamNarrow-Book", "Helvetica Neue", sans-serif;
overflow: hidden;
}
html,
body,
#root {
width: 100%;
height: 100%;
}

#root {
min-height: 100vh;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f2f7fd 100%);
overflow: auto;
position: relative;
Expand Down

0 comments on commit 38dd334

Please sign in to comment.