mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
Prevent horizontal scroll in small devices.
This commit is contained in:
parent
f320e15a08
commit
c237ebb276
3 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ body {
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
html, body {
|
html, body {
|
||||||
min-width: 320px;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
|
|
2
assets/css/main.min.css
vendored
2
assets/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -19,7 +19,7 @@
|
||||||
// Ensures page width is always >=320px.
|
// Ensures page width is always >=320px.
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
html, body {
|
html, body {
|
||||||
min-width: 320px;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue