diff options
author | msquare <msquare@notrademark.de> | 2018-01-22 20:33:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 20:33:44 +0100 |
commit | 7278d379cda83d52572249e427a63e4e66b3279e (patch) | |
tree | 9b09a6fe1b85b883f298d549afe34ec96b50415f /themes | |
parent | ddadaada9dc1bd288c82da840a4c4f02767d3e43 (diff) | |
parent | d01246852950b1fbb4480618852fe7d154ec98fd (diff) |
Merge pull request #416 from jbeyerstedt/feature/mobile-ui
shifts view: change breakpoints to fit more on smaller screens
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base.less | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/base.less b/themes/base.less index e45b7f85..37558071 100644 --- a/themes/base.less +++ b/themes/base.less @@ -247,3 +247,15 @@ body { transform: rotate(0deg) translateY(0px); } } + +@media (max-width: 525px) { + .col-xxs-12 { + float: none; + width: 100%; + + position: relative; left: 0; right: 0; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + } +} |