diff --git a/src/interface/web/index.html b/src/interface/web/index.html index aa62f3e1..8a1574b3 100644 --- a/src/interface/web/index.html +++ b/src/interface/web/index.html @@ -95,6 +95,18 @@ padding: 10px; margin: 10px; } + + /* Switch to 1 Column for Mobile Displays */ + @media only screen and (max-width: 600px) { + body { + display: grid; + grid-template-columns: 1fr; + } + body > * { + grid-column: 1; + } + } + h1 { font-weight: 200; color: #888;