diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-12-14 13:16:31 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-12-14 13:16:31 +0100 |
commit | d67c1945b7d737d3293ea9fff95ec7f30a8f47de (patch) | |
tree | c71ed0462a67b276e6bad64c326da7ee95d2cf56 | |
parent | 7c4d1ca2d771ee527201ccd6447e70da97ad33be (diff) |
add compact mode
-rw-r--r-- | public/stylesheets/style.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 7c39421..db85f71 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -369,4 +369,17 @@ body.no-input #week-selector { .tooltip { display: none; +} + +@media screen and (max-width: 580px) { + table table tr { + display: flex; + flex-direction: column; + } + + table * { + margin: 0 !important; + padding: 0 !important; + line-height: 13px; + } }
\ No newline at end of file |