STYLE Add overflow-x hidden to html and adjust body styles
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2026-05-19 17:03:33 +02:00
parent 8d9761b4ab
commit a25a5273c3

View File

@ -3,17 +3,19 @@ a {
@apply text-primary; @apply text-primary;
} }
body{ html {
overflow-x: hidden;
}
body {
max-width: 100vw; max-width: 100vw;
overflow-x: hidden; overflow-x: hidden;
} }
main { main {
/* Causing issues with the article sidebar index sticky positioning */ /* Causing issues with the article sidebar index sticky positioning */
/* overflow-x: hidden; */ /* overflow-x: hidden; */
/* overflow-y: clip; */ /* overflow-y: clip; */
max-width: 100vw; max-width: 100vw;
& > :last-child { & > :last-child {
margin-bottom: 0px !important; margin-bottom: 0px !important;