@@ -695,6 +695,7 @@ test('element variants', async () => {
695
695
prose-figcaption:opacity-75
696
696
prose-strong:font-medium
697
697
prose-em:italic
698
+ prose-kbd:border-b-2
698
699
prose-code:font-mono
699
700
prose-pre:font-mono
700
701
prose-ol:pl-6
@@ -708,7 +709,6 @@ test('element variants', async () => {
708
709
prose-img:rounded-lg
709
710
prose-video:my-12
710
711
prose-hr:border-t-2
711
- prose-kbd:border-b-2
712
712
"
713
713
> </ div> ` ,
714
714
} ,
@@ -808,6 +808,10 @@ test('element variants', async () => {
808
808
: is (: where (em): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
809
809
font-style : italic;
810
810
}
811
+ .prose-kbd\:border-b-2
812
+ : is (: where (kbd): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
813
+ border-bottom-width : 2px ;
814
+ }
811
815
.prose-code\:font-mono
812
816
: is (: where (code): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
813
817
font-family : ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono' ,
@@ -864,10 +868,6 @@ test('element variants', async () => {
864
868
: is (: where ([class ~= 'lead' ]): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
865
869
font-style : italic;
866
870
}
867
- .prose-kbd\:border-b-2
868
- : is (: where (kbd): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
869
- border-bottom-width : 2px ;
870
- }
871
871
`
872
872
)
873
873
} )
@@ -894,6 +894,7 @@ test('element variants with custom class name', async () => {
894
894
markdown-figcaption:opacity-75
895
895
markdown-strong:font-medium
896
896
markdown-em:italic
897
+ markdown-kbd:border-b-2
897
898
markdown-code:font-mono
898
899
markdown-pre:font-mono
899
900
markdown-ol:pl-6
@@ -907,7 +908,6 @@ test('element variants with custom class name', async () => {
907
908
markdown-img:rounded-lg
908
909
markdown-video:my-12
909
910
markdown-hr:border-t-2
910
- markdown-kbd:border-b-2
911
911
"
912
912
> </ div> ` ,
913
913
} ,
@@ -1009,6 +1009,10 @@ test('element variants with custom class name', async () => {
1009
1009
: is (: where (em): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1010
1010
font-style : italic;
1011
1011
}
1012
+ .markdown-kbd\:border-b-2
1013
+ : is (: where (kbd): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1014
+ border-bottom-width : 2px ;
1015
+ }
1012
1016
.markdown-code\:font-mono
1013
1017
: is (: where (code): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1014
1018
font-family : ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono' ,
@@ -1069,10 +1073,6 @@ test('element variants with custom class name', async () => {
1069
1073
* ))) {
1070
1074
font-style : italic;
1071
1075
}
1072
- .markdown-kbd\:border-b-2
1073
- : is (: where (kbd): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1074
- border-bottom-width : 2px ;
1075
- }
1076
1076
`
1077
1077
)
1078
1078
} )
0 commit comments