File tree 2 files changed +24
-5
lines changed
2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ $themes: (
32
32
iconDarkDisplay : none ,
33
33
iconLightDisplay : block ,
34
34
arrowBackground : $gray-neutral-light ,
35
+ beforeBackground : $turquoise
35
36
),
36
37
dark : (
37
38
secondaryBackgroundColor : $gray-60 ,
@@ -42,5 +43,6 @@ $themes: (
42
43
iconDarkDisplay : block ,
43
44
iconLightDisplay : none ,
44
45
arrowBackground : $gray-60 ,
46
+ beforeBackground : $white
45
47
),
46
48
);
Original file line number Diff line number Diff line change 1
1
@import " ../../assets/sass/_global/fonts" ;
2
+ @import " ../../assets/sass/_global/themes" ;
2
3
@import " ../../assets/sass/_global/utils" ;
3
4
4
5
.mobileSubNav {
28
29
29
30
.mobileSubNavHeader {
30
31
@include button-reset ;
31
- background : $teal ;
32
+ @include themify ($themes ) {
33
+ background : themed (' secondaryBackgroundColor' );
34
+ }
32
35
width : 100% ;
33
36
height : 60px ;
34
37
display : flex ;
38
41
39
42
span {
40
43
@include Roboto-Regular ;
41
- color : $white ;
44
+ @include themify ($themes ) {
45
+ color : themed (' secondaryTextColor' );
46
+ }
42
47
font-size : 28px ;
43
48
line-height : 40px ;
44
49
}
50
55
img {
51
56
margin-left : 8px ;
52
57
}
58
+
59
+ path {
60
+ @include themify ($themes ) {
61
+ fill : themed (' secondaryTextColor' );
62
+ }
63
+ }
53
64
}
54
65
55
66
.mobileSubNavContent {
56
67
display : flex ;
57
68
flex-direction : column ;
58
69
padding : $base-unit * 3 $base-unit * 4 ;
59
- background : $teal ;
70
+ @include themify ($themes ) {
71
+ background : themed (' secondaryBackgroundColor' );
72
+ }
60
73
border-top : 1px solid $teal-light ;
61
74
width : 100% ;
62
75
z-index : 999 ;
63
76
position : absolute ;
64
77
65
78
.mobileSubNavChild {
66
- color : $white ;
79
+ @include themify ($themes ) {
80
+ color : themed (' secondaryTextColor' );
81
+ }
67
82
font-size : 18px ;
68
83
line-height : 40px ;
69
84
height : 40px ;
81
96
height : 30px ;
82
97
width : 3px ;
83
98
border-radius : 1.5px ;
84
- background : $white ;
99
+ @include themify ($themes ) {
100
+ background : themed (' beforeBackground' );
101
+ }
85
102
display : inline-block ;
86
103
margin-right : 10px ;
87
104
}
You can’t perform that action at this time.
0 commit comments