diff options
| author | Clement Ho <ClemMakesApps@gmail.com> | 2016-09-13 11:25:50 -0500 |
|---|---|---|
| committer | Clement Ho <ClemMakesApps@gmail.com> | 2016-10-03 10:33:19 -0500 |
| commit | bdb0af25091b2ca559d7bfebc00d0194d199af50 (patch) | |
| tree | 1fad78ea22210f04e42f4b7e6ffbadb9efca52a2 /app | |
| parent | 958815a039af68dc68b333b69b3e9e3f3bc4ee2e (diff) | |
| download | gitlab-ce-bdb0af25091b2ca559d7bfebc00d0194d199af50.tar.gz | |
Fix todos page mobile viewport layout
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/stylesheets/pages/todos.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/todos.scss b/app/assets/stylesheets/pages/todos.scss index 68a5d1ae06c..ea76fe18876 100644 --- a/app/assets/stylesheets/pages/todos.scss +++ b/app/assets/stylesheets/pages/todos.scss @@ -51,6 +51,7 @@ -webkit-flex-direction: column; flex-direction: column; margin-left: 10px; + min-width: 55px; } .todo-item { @@ -120,6 +121,14 @@ } } +@media (max-width: $screen-sm-max) { + .todos-filters { + .dropdown-menu-toggle { + width: 135px; + } + } +} + @media (max-width: $screen-xs-max) { .todo { .avatar { @@ -141,4 +150,14 @@ padding-left: 10px; } } + + .todos-filters { + .row-content-block { + padding-bottom: 50px; + } + + .dropdown-menu-toggle { + width: 100%; + } + } } |
