gotosocial/web/source/css/components/utility.css
2024-11-05 15:53:22 +01:00

21 lines
221 B
CSS

.hidden {
display: none;
}
.nounderline {
text-decoration: none;
}
.accent {
color: $acc1;
}
.text-cutoff {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.wrap-text {
word-wrap: anywhere;
}