summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-12-21 18:18:37 +0100
committerVolpeon <git@volpeon.ink>2021-12-21 18:18:37 +0100
commit17f0194e4914b97ab66ebe4e78c3673a52d15095 (patch)
tree3654c157f4d372124962a3dab3837c1760a94700 /assets
parentShow proper title in redirect fallback pages (diff)
downloadvolpeon.ink-17f0194e4914b97ab66ebe4e78c3673a52d15095.tar.gz
volpeon.ink-17f0194e4914b97ab66ebe4e78c3673a52d15095.tar.bz2
volpeon.ink-17f0194e4914b97ab66ebe4e78c3673a52d15095.zip
Remove unused utility classes
Diffstat (limited to 'assets')
-rw-r--r--assets/css/_utils.scss32
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}