Skip to content

Commit bce38de

Browse files
authored
Make list type selector case sensitive (#2418)
* Make list type selector case sensitive * Create .changeset/quiet-lamps-smile.md
1 parent 7dfcb0c commit bce38de

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.changeset/quiet-lamps-smile.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/css": patch
3+
---
4+
5+
Make list type selector case sensitive

src/markdown/lists.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
}
1515
}
1616

17-
ol[type='a'] {
17+
ol[type='a s'] {
1818
list-style-type: lower-alpha;
1919
}
2020

21-
ol[type='A'] {
21+
ol[type='A s'] {
2222
list-style-type: upper-alpha;
2323
}
2424

25-
ol[type='i'] {
25+
ol[type='i s'] {
2626
list-style-type: lower-roman;
2727
}
2828

29-
ol[type='I'] {
29+
ol[type='I s'] {
3030
list-style-type: upper-roman;
3131
}
3232

0 commit comments

Comments
 (0)