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);
|
color: var(--theme-grey);
|
||||||
vertical-align: text-top;
|
vertical-align: text-top;
|
||||||
margin-bottom: .125rem;
|
margin-bottom: .125rem;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.other svg {
|
.other svg {
|
||||||
|
@ -156,6 +157,7 @@ a.link:visited {
|
||||||
.main {
|
.main {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.children {
|
.children {
|
||||||
|
|
Loading…
Reference in New Issue