Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 9a71b26

Browse files
committed
Hacky hack to fix problems with layout issues for screens under 324 pixels.
1 parent 93add7e commit 9a71b26

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/css/freeboard/styles.css

+7
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ body {
8181
margin: 0;
8282
}
8383

84+
/* Hacky hack. Remove scrollbars for 320 width screens */
85+
@media screen and (max-width : 320px) {
86+
body::-webkit-scrollbar {
87+
display: none;
88+
}
89+
}
90+
8491
/* ==========================================================================
8592
Links
8693
========================================================================== */

0 commit comments

Comments
 (0)