Peertube theme: underline links in chat messages.

This commit is contained in:
John Livingston 2021-11-23 19:07:20 +01:00
parent 74236028ac
commit 752fafe376
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
1 changed files with 11 additions and 0 deletions

View File

@ -36,6 +36,17 @@
background-color: var(--peertube-main-background);
}
.chat-msg__text {
// underline links in chat messages
a[href] {
text-decoration: underline;
&:hover {
text-decoration: underline;
}
}
}
// hidding avatars when screen width is not big enough.
@media screen and (max-width: 576px) {
.message {