Fix overflow-y on desktop

This commit is contained in:
Paul Nicoué 2022-12-19 11:49:02 +01:00
parent 933b70e026
commit 20cc18d234
2 changed files with 1 additions and 15 deletions

View file

@ -72,13 +72,6 @@ body {
overflow-x: hidden; overflow-x: hidden;
} }
@media screen and (min-width: $desktop-media-query) {
body {
overflow-y: hidden;
}
}
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// MAIN // MAIN
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -153,13 +146,6 @@ body {
@media screen and (min-width: $desktop-media-query) { @media screen and (min-width: $desktop-media-query) {
.home-section {
position: fixed;
overflow-y: auto;
top: 0;
left: 0;
}
.social { .social {
width: auto; width: auto;
justify-content: flex-start; justify-content: flex-start;

File diff suppressed because one or more lines are too long