Skip to content

Commit 93439ed

Browse files
Reinstate numbers for ol elements
1 parent 71a9bac commit 93439ed

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/common/documentation-styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export const docStylesClass = css({
1717
// `outside`, which would silently win over the inherited value.
1818
listStylePosition: "inside",
1919
"& ol": {
20+
listStyleType: "decimal",
2021
pl: "3",
2122
listStylePosition: "inside",
2223
},

src/documentation/ideas/IdeasDocumentation.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ const ActiveLevel = ({
7474
const contentWidth = contentRect?.width ?? 0;
7575
const numCols =
7676
!contentWidth || contentWidth > 1100 ? 3 : contentWidth > 550 ? 2 : 1;
77+
console.log(activeIdea?.content);
7778
if (activeIdea) {
7879
return (
7980
<HeadedScrollablePanel

0 commit comments

Comments
 (0)