Fix home column style on medium screen widths fixes #8372 (#8387)

* handle medium screen width on home columns

* rename new-row helper used on home screen for todo column flow
This commit is contained in:
Jan Jorgensen
2017-01-10 12:03:21 -07:00
committed by Keith Holliday
parent 2950713712
commit 2b80931202
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,7 +62,7 @@
.pull-right-lg
float: right
// Making sure that the To-Dos tab always flow right on medium screens.
// Making sure that the To-Dos tab always flow right on small screens.
@media (min-width: $sm-min-screen-width) and (max-width: $sm-max-screen-width)
.new-row-md
.new-row-sm
clear: left
+1 -1
View File
@@ -6,7 +6,7 @@ include ./task_view/mixins
script(id='templates/habitrpg-tasks.html', type="text/ng-template")
.tasks-lists.container-fluid
.row
.col-sm-3(ng-repeat='list in lists', ng-class='::{ "rewards-module": list.type==="reward", "new-row-md": list.type==="todo" }')
.col-sm-6.col-md-3(ng-repeat='list in lists', ng-class='::{ "rewards-module": list.type==="reward", "new-row-sm": list.type==="todo" }')
.task-column(class='{{::list.type}}s')
include ./task_view/graph