Skip to content
Snippets Groups Projects
Commit df0fc6b1 authored by Kevin Lin's avatar Kevin Lin :sparkles:
Browse files

_sass: Override theme definition list styles

parent cd9c4d83
No related branches found
No related tags found
No related merge requests found
.module {
.page-content .module {
@extend .card;
.module-days {
......@@ -8,6 +8,24 @@
grid-template-columns: 1fr 7fr;
}
}
dl {
display: grid;
grid-template-columns: max-content 1fr;
}
dt {
font-weight: normal;
text-align: right;
&::after {
content: ":";
}
}
dd {
font-weight: 500;
}
}
.module-week {
......
......@@ -27,6 +27,26 @@ summary {
@extend .btn, .btn-outline;
}
.page-content .katex {
font-size: 1.1em;
.page-content {
dl {
display: block;
grid-template-columns: none;
}
dt {
font-weight: 500;
text-align: start;
&::after {
content: normal;
}
}
dd {
font-weight: normal;
}
.katex {
font-size: 1.1em;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment