Skip to content

Commit

Permalink
Merge pull request #68 from jjh4450/fix/overscrollBehavior
Browse files Browse the repository at this point in the history
Fix/overscroll behavior
  • Loading branch information
flareseek authored Sep 21, 2024
2 parents ec86f3d + 3694d16 commit 2a8ab08
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/shared/styles/globalStyle.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ globalStyle("body", {
position: "relative",
background:
"linear-gradient(180deg, #4FD1C5 0%, #56C5CF 16.67%, #5DB9D9 33.33%, #63ADE3 50%, #63A1ED 66.7%, #4FD1C5 100%)",
backgroundSize: "100% 2400px",
backgroundSize: "1000% 2400px",
backgroundRepeat: "repeat-y",
minHeight: "100vh",
width: "100%",
paddingTop: "3.75rem",
overscrollBehavior: "none",
overscrollBehaviorY: "none",
"@media": {
"(min-height: 1000px)": {
overscrollBehaviorX: "none",
},
},
});
globalStyle("#root", {
fontFamily: vars.font.pretendardRegular,
Expand Down

0 comments on commit 2a8ab08

Please sign in to comment.