File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 56
56
margin-top : $hr-margin-y ;
57
57
margin-bottom : $hr-margin-y ;
58
58
border : 0 ;
59
- border-top : $hr-border-width solid $hr-border-color ;
59
+ border-top : $hr-border-width solid ;
60
+ @include themes ($typography-theme-map , $create : parent) {
61
+ border-color : themes-get-value (" hr-border-color" );
62
+ }
60
63
}
61
64
62
65
//
65
68
66
69
.c-vr {
67
70
width : $vr-width ;
68
- background-color : $vr-color-bg ;
71
+ @include themes ($typography-theme-map , $create : parent) {
72
+ background-color : themes-get-value (" vr-bg" );
73
+ }
69
74
}
70
75
71
76
//
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ $blockquote-font-size: $font-size-base * 1.25 !default;
59
59
$hr-border-color : rgba ($black , .2 ) !default ;
60
60
$hr-border-width : $border-width !default ;
61
61
62
- $vr-color- bg : rgba ($black , .2 ) !default ;
63
- $vr-width : $border-width !default ;
62
+ $vr-bg : rgba ($black , .2 ) !default ;
63
+ $vr-width : $border-width !default ;
64
64
65
65
$mark-padding : .2em !default ;
66
66
@@ -96,7 +96,9 @@ $typography-theme-map: () !default;
96
96
$typography-theme-map : map-merge (
97
97
(
98
98
default : (
99
- " text-muted" : $text-muted
99
+ " hr-border-color" : $hr-border-color ,
100
+ " vr-bg" : $vr-bg ,
101
+ " text-muted" : $text-muted
100
102
)
101
103
),
102
104
$typography-theme-map
You can’t perform that action at this time.
0 commit comments