Add explicit word break for items (#1137)
* add word break for notification items when they are too long * don't use global css
This commit is contained in:
parent
98a27caaa9
commit
64de3c3b94
|
@ -90,6 +90,7 @@ a.link:visited {
|
|||
color: var(--theme-grey);
|
||||
vertical-align: text-top;
|
||||
margin-bottom: .125rem;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.other svg {
|
||||
|
@ -156,6 +157,7 @@ a.link:visited {
|
|||
.main {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.children {
|
||||
|
|
Loading…
Reference in New Issue