css: treat devices with width < 880px as mobile

This commit is contained in:
Evgeny Zinoviev 2022-07-11 13:15:31 +03:00
parent b23f78df7a
commit 202809baea

View File

@ -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";
}