Prevent horizontal scroll in small devices.

This commit is contained in:
pmoreno.rodriguez 2023-11-26 11:37:23 +01:00
parent f320e15a08
commit c237ebb276
3 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ body {
@media screen and (max-width: 480px) {
html, body {
min-width: 320px;
min-width: auto;
}
}
html {

File diff suppressed because one or more lines are too long

View file

@ -19,7 +19,7 @@
// Ensures page width is always >=320px.
@include breakpoint('<=xsmall') {
html, body {
min-width: 320px;
min-width: auto;
}
}