From 202809baea810876de02f83df2d67153e1d352eb Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Mon, 11 Jul 2022 13:15:31 +0300 Subject: css: treat devices with width < 880px as mobile --- htdocs/scss/bundle_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- cgit v1.2.3