We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dfcb0c commit bce38deCopy full SHA for bce38de
.changeset/quiet-lamps-smile.md
@@ -0,0 +1,5 @@
1
+---
2
+"@primer/css": patch
3
4
+
5
+Make list type selector case sensitive
src/markdown/lists.scss
@@ -14,19 +14,19 @@
14
}
15
16
17
- ol[type='a'] {
+ ol[type='a s'] {
18
list-style-type: lower-alpha;
19
20
21
- ol[type='A'] {
+ ol[type='A s'] {
22
list-style-type: upper-alpha;
23
24
25
- ol[type='i'] {
+ ol[type='i s'] {
26
list-style-type: lower-roman;
27
28
29
- ol[type='I'] {
+ ol[type='I s'] {
30
list-style-type: upper-roman;
31
32
0 commit comments