mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-24 12:46:38 +00:00
21 lines
221 B
CSS
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;
|
||
|
}
|