fix: apply only to mobile devices

This commit is contained in:
sadorowo 2024-03-16 11:04:40 +01:00
parent 43ddcb23d8
commit a00db1ff7a
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,6 @@ body>div:not([id]) {
float: left;
height: 100%;
border: 1px solid;
width: calc(100% / var(--columns));
}

View File

@ -1,6 +1,7 @@
@media screen and (max-width: 767px) {
body>div {
body>div:not([id]) {
width: 100% !important;
border-bottom: 1px solid;
}
body>div>div#inner {