Skip to content

Commit

Permalink
feat: bullet points/enumerated lists in training
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Apr 30, 2024
1 parent 37f1d5d commit 5c67a84
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions apps/forge/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@
/* SignInsChart.tsx specific stuff */
/* The chart's background */

#sign-in-chart > div > div > svg > rect {
#sign-in-chart>div>div>svg>rect {
fill: hsl(var(--background)) !important;
}

/* Any text in the chart*/

#sign-in-chart > text {
#sign-in-chart>text {
fill: hsl(var(--foreground)) !important;
font-family: var(--font-sans), sans-serif !important;
}
Expand All @@ -67,28 +67,28 @@

/* The lines that bind months together */

#sign-in-chart > div > div > svg > g > path {
#sign-in-chart>div>div>svg>g>path {
stroke: hsl(var(--background)) !important;
stroke-width: 0px !important;
}

/* The legend text */

#sign-in-chart > div > div > svg > g > text {
#sign-in-chart>div>div>svg>g>text {
fill: hsl(var(--foreground)) !important;
font-family: var(--font-sans), sans-serif !important;
}

/* The on-hover pop-up */

#sign-in-chart > div > div > div > div {
#sign-in-chart>div>div>div>div {
background: hsl(var(--background)) !important;
color: var(--foreground) !important;
}

/* The text for the pop-up */

#sign-in-chart > div > div > div > div > div > span {
#sign-in-chart>div>div>div>div>div>span {
color: hsl(var(--foreground)) !important;
font-family: var(--font-sans), sans-serif !important;
}
Expand All @@ -98,6 +98,14 @@
#training-content a {
color: hsl(var(--primary))
}

#training-content li {
list-style-type: circle;
}

#training-content ol {
list-style-type: decimal;
}
}

.dark {
Expand Down

0 comments on commit 5c67a84

Please sign in to comment.