mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
Added helper classes for floats at various screen sizes
This commit is contained in:
parent
41e1f4c75f
commit
d0df9e46d6
1 changed files with 23 additions and 0 deletions
|
|
@ -39,3 +39,26 @@
|
|||
margin-left: auto
|
||||
margin-right: auto
|
||||
|
||||
// .pull-right & .pull-left for specific screen sizes
|
||||
// Follows conventions for col-x-SIZE classes
|
||||
|
||||
@media (min-width: 768px)
|
||||
.pull-left-sm
|
||||
float: left
|
||||
|
||||
.pull-right-sm
|
||||
float: right
|
||||
|
||||
@media (min-width: 992px)
|
||||
.pull-left-md
|
||||
float: left
|
||||
|
||||
.pull-right-md
|
||||
float: right
|
||||
|
||||
@media (min-width: 1200px)
|
||||
.pull-left-lg
|
||||
float: left
|
||||
|
||||
.pull-right-lg
|
||||
float: right
|
||||
|
|
|
|||
Loading…
Reference in a new issue