@@ -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
@@ -807,6 +808,10 @@ test('element variants', async () => {
807
808
: is (: where (em): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
808
809
font-style : italic;
809
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
+ }
810
815
.prose-code\:font-mono
811
816
: is (: where (code): not (: where ([class ~= 'not-prose' ], [class ~= 'not-prose' ] * ))) {
812
817
font-family : ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono' ,
@@ -889,6 +894,7 @@ test('element variants with custom class name', async () => {
889
894
markdown-figcaption:opacity-75
890
895
markdown-strong:font-medium
891
896
markdown-em:italic
897
+ markdown-kbd:border-b-2
892
898
markdown-code:font-mono
893
899
markdown-pre:font-mono
894
900
markdown-ol:pl-6
@@ -1003,6 +1009,10 @@ test('element variants with custom class name', async () => {
1003
1009
: is (: where (em): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1004
1010
font-style : italic;
1005
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
+ }
1006
1016
.markdown-code\:font-mono
1007
1017
: is (: where (code): not (: where ([class ~= 'not-markdown' ], [class ~= 'not-markdown' ] * ))) {
1008
1018
font-family : ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono' ,
0 commit comments