mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-06 20:26:17 -05:00
24 lines
408 B
CSS
24 lines
408 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-3);
|
|
white-space: normal;
|
|
font-size: var(--font-xs);
|
|
}
|
|
|
|
.list {
|
|
margin: var(--s-1) 0 0;
|
|
padding-inline-start: var(--s-4);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.example {
|
|
display: block;
|
|
padding: var(--s-2);
|
|
border-radius: var(--radius-box);
|
|
background-color: var(--color-bg-higher);
|
|
word-break: break-word;
|
|
}
|