fix(web): prevent overflow on long links from lemmy
This commit is contained in:
parent
157c97694e
commit
8b5e6d805d
1 changed files with 3 additions and 1 deletions
|
@ -80,6 +80,9 @@
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
border-left: solid 3px var(--background-secondary);
|
border-left: solid 3px var(--background-secondary);
|
||||||
}
|
}
|
||||||
|
article {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
article.tl {
|
article.tl {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
border-left: solid 3px var(--accent);
|
border-left: solid 3px var(--accent);
|
||||||
|
@ -87,7 +90,6 @@
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
word-wrap: break-word;
|
|
||||||
}
|
}
|
||||||
article p {
|
article p {
|
||||||
margin: 0 0 0 .5em;
|
margin: 0 0 0 .5em;
|
||||||
|
|
Loading…
Reference in a new issue