diff options
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/_utils.scss | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/assets/css/_utils.scss b/assets/css/_utils.scss index da090dd..39953d1 100644 --- a/assets/css/_utils.scss +++ b/assets/css/_utils.scss | |||
@@ -18,38 +18,10 @@ | |||
18 | 18 | ||
19 | @include utility('mt0') { | 19 | @include utility('mt0') { |
20 | margin-top: 0; | 20 | margin-top: 0; |
21 | |||
22 | @each $breakpoint in map-keys($breakpoints) { | ||
23 | @include media('<=#{$breakpoint}') { | ||
24 | @include suffix('#{$breakpoint}-lo') { | ||
25 | margin-top: 0; | ||
26 | } | ||
27 | } | ||
28 | |||
29 | @include media('>#{$breakpoint}') { | ||
30 | @include suffix('#{$breakpoint}-hi') { | ||
31 | margin-top: 0; | ||
32 | } | ||
33 | } | ||
34 | } | ||
35 | } | 21 | } |
36 | 22 | ||
37 | @include utility('pb0') { | 23 | @include utility('pb0') { |
38 | padding-bottom: 0; | 24 | padding-bottom: 0; |
39 | |||
40 | @each $breakpoint in map-keys($breakpoints) { | ||
41 | @include media('<=#{$breakpoint}') { | ||
42 | @include suffix('#{$breakpoint}-lo') { | ||
43 | padding-bottom: 0; | ||
44 | } | ||
45 | } | ||
46 | |||
47 | @include media('>#{$breakpoint}') { | ||
48 | @include suffix('#{$breakpoint}-hi') { | ||
49 | padding-bottom: 0; | ||
50 | } | ||
51 | } | ||
52 | } | ||
53 | } | 25 | } |
54 | 26 | ||
55 | @include utility('db') { | 27 | @include utility('db') { |
@@ -68,3 +40,7 @@ | |||
68 | overflow: hidden; | 40 | overflow: hidden; |
69 | text-overflow: ellipsis; | 41 | text-overflow: ellipsis; |
70 | } | 42 | } |
43 | |||
44 | @include utility('tar') { | ||
45 | text-align: right; | ||
46 | } | ||