ADD: richtext system

Added richtext system for better card content.
This commit is contained in:
webfussel 2025-02-21 14:31:35 +01:00
parent a325d52052
commit 932796aef1
2 changed files with 33 additions and 4 deletions

View file

@ -98,6 +98,7 @@ a {
a.text {
color: var(--color-orange);
text-decoration: underline;
&:hover {
color: var(--color-orange-light);
@ -185,6 +186,17 @@ span.chip {
}
}
.inline-flex-row {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: .2em;
&.reverse {
flex-direction: row-reverse;
}
}
.flex-col {
display: flex;
flex-direction: column;