Skip to content

Commit

Permalink
Merge pull request #214 from Lapkipomoshi/fix-scroll
Browse files Browse the repository at this point in the history
Fix scroll
  • Loading branch information
karlbelousov committed May 2, 2024
2 parents f3cae50 + 2349629 commit 03b1dd3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/ProfilePopup/ProfilePopup.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.profile-popup {
width: 100vw;
width: -webkit-fill-available;
height: 100vh;
position: absolute;
left: 963px;
Expand Down
5 changes: 3 additions & 2 deletions src/modules/PapersOnMain/styles/papers-on-main.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.papers-on-main {
display: flex;
width: 1440px;
width: 100%;
max-width: 1440px;
padding: 64px 132px;
flex-direction: column;
box-sizing: border-box;
background-color: var(--color-background-additional);
}
}
5 changes: 3 additions & 2 deletions src/modules/SheltersOnMain/styles/shelters-on-main.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.shelters-on-main {
display: flex;
flex-direction: column;
width: 1440px;
width: 100%;
max-width: 1440px;
padding: 64px 132px;
background-color: var(--color-background-base);
box-sizing: border-box;
}
}
1 change: 1 addition & 0 deletions src/pages/App/styles/page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
margin: 0 auto;
font-family: var(--font-family-base);
color: var(--color-text-base);
overflow: hidden;
}

0 comments on commit 03b1dd3

Please sign in to comment.