diff options
Diffstat (limited to 'src/objects/_divider.scss')
-rw-r--r-- | src/objects/_divider.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objects/_divider.scss b/src/objects/_divider.scss index cef598f..9764ddb 100644 --- a/src/objects/_divider.scss +++ b/src/objects/_divider.scss | |||
@@ -7,15 +7,15 @@ | |||
7 | --margin-y: fn.global-dim(--size --85), | 7 | --margin-y: fn.global-dim(--size --85), |
8 | 8 | ||
9 | --strong: ( | 9 | --strong: ( |
10 | --border-width: fn.global-dim(--border-width --thick), | 10 | --border: fn.global-dim(--border --thick), |
11 | --label-font-size: fn.global-dim(--font-size --100), | 11 | --label-font-size: fn.global-dim(--font-size --100), |
12 | ), | 12 | ), |
13 | --medium: ( | 13 | --medium: ( |
14 | --border-width: fn.global-dim(--border-width --medium), | 14 | --border: fn.global-dim(--border --medium), |
15 | --label-font-size: fn.global-dim(--font-size --75), | 15 | --label-font-size: fn.global-dim(--font-size --75), |
16 | ), | 16 | ), |
17 | --faint: ( | 17 | --faint: ( |
18 | --border-width: fn.global-dim(--border-width --thin), | 18 | --border: fn.global-dim(--border --thin), |
19 | --label-font-size: fn.global-dim(--font-size --50), | 19 | --label-font-size: fn.global-dim(--font-size --50), |
20 | ), | 20 | ), |
21 | ), | 21 | ), |
@@ -40,7 +40,7 @@ | |||
40 | 40 | ||
41 | @include iro.bem-object(iro.props-namespace()) { | 41 | @include iro.bem-object(iro.props-namespace()) { |
42 | display: block; | 42 | display: block; |
43 | height: fn.dim(--strong --border-width); | 43 | height: fn.dim(--strong --border); |
44 | margin-top: fn.dim(--margin-y); | 44 | margin-top: fn.dim(--margin-y); |
45 | margin-bottom: fn.dim(--margin-y); | 45 | margin-bottom: fn.dim(--margin-y); |
46 | background-color: fn.color(--strong --bg); | 46 | background-color: fn.color(--strong --bg); |
@@ -55,12 +55,12 @@ | |||
55 | } | 55 | } |
56 | 56 | ||
57 | @include iro.bem-modifier('medium') { | 57 | @include iro.bem-modifier('medium') { |
58 | height: fn.dim(--medium --border-width); | 58 | height: fn.dim(--medium --border); |
59 | background-color: fn.color(--medium --bg); | 59 | background-color: fn.color(--medium --bg); |
60 | } | 60 | } |
61 | 61 | ||
62 | @include iro.bem-modifier('faint') { | 62 | @include iro.bem-modifier('faint') { |
63 | height: fn.dim(--faint --border-width); | 63 | height: fn.dim(--faint --border); |
64 | background-color: fn.color(--faint --bg); | 64 | background-color: fn.color(--faint --bg); |
65 | } | 65 | } |
66 | 66 | ||