diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-11 13:15:31 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-11 13:15:31 +0300 |
commit | 202809baea810876de02f83df2d67153e1d352eb (patch) | |
tree | 008ba7bb689e835d93ea2c2a5204886ff4cfcc13 /htdocs | |
parent | b23f78df7af9653447db0d8b8d8edd21fe2e732d (diff) |
css: treat devices with width < 880px as mobile
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/scss/bundle_common.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/scss/bundle_common.scss b/htdocs/scss/bundle_common.scss index 14fd8b0..56d9ead 100644 --- a/htdocs/scss/bundle_common.scss +++ b/htdocs/scss/bundle_common.scss @@ -5,6 +5,6 @@ @import "./app/pages"; @import "./hljs/github.scss"; -@media screen and (max-width: 640px) { +@media screen and (max-width: 880px) { @import "./app/mobile"; } |