@@ -24,7 +24,7 @@ const darkModeInfoStyles = css`
24
24
box-shadow : 0 0 0 2px ${ palette . blue . dark3 } ,
25
25
0 0 0 4px ${ palette . blue . light1 } ;
26
26
27
- & : before {
27
+ & :: before {
28
28
background-color : ${ palette . blue . dark2 } ;
29
29
}
30
30
}
@@ -39,7 +39,7 @@ const darkModeWarningStyles = css`
39
39
box-shadow : 0 0 0 2px ${ palette . yellow . dark3 } ,
40
40
0 0 0 4px ${ palette . blue . light1 } ;
41
41
42
- & : before {
42
+ & :: before {
43
43
background-color : ${ palette . yellow . dark2 } ;
44
44
}
45
45
}
@@ -54,7 +54,7 @@ const darkModeDangerStyles = css`
54
54
color : ${ palette . red . light2 } ;
55
55
box-shadow : 0 0 0 2px ${ palette . red . dark3 } , 0 0 0 4px ${ palette . blue . light1 } ;
56
56
57
- & : before {
57
+ & :: before {
58
58
background-color : ${ palette . red . dark2 } ;
59
59
}
60
60
}
@@ -70,7 +70,7 @@ const darkModeSuccessStyles = css`
70
70
box-shadow : 0 0 0 2px ${ palette . green . dark3 } ,
71
71
0 0 0 4px ${ palette . blue . light1 } ;
72
72
73
- & : before {
73
+ & :: before {
74
74
background-color : ${ palette . green . dark2 } ;
75
75
}
76
76
}
@@ -84,7 +84,7 @@ const lightModeInfoStyles = css`
84
84
& : focus-visible {
85
85
color : ${ palette . blue . dark2 } ;
86
86
87
- & : before {
87
+ & :: before {
88
88
background-color : ${ palette . blue . light2 } ;
89
89
}
90
90
}
@@ -98,7 +98,7 @@ const lightModeWarningStyles = css`
98
98
& : focus-visible {
99
99
color : ${ palette . yellow . dark2 } ;
100
100
101
- & : before {
101
+ & :: before {
102
102
background-color : ${ palette . yellow . light2 } ;
103
103
}
104
104
}
@@ -112,7 +112,7 @@ const lightModeDangerStyles = css`
112
112
& : focus-visible {
113
113
color : ${ palette . red . dark2 } ;
114
114
115
- & : before {
115
+ & :: before {
116
116
background-color : ${ palette . red . light2 } ;
117
117
}
118
118
}
@@ -126,7 +126,7 @@ const lightModeSuccessStyles = css`
126
126
& : focus-visible {
127
127
color : ${ palette . green . dark2 } ;
128
128
129
- & : before {
129
+ & :: before {
130
130
background-color : ${ palette . green . light2 } ;
131
131
}
132
132
}
0 commit comments