mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 02:35:39 +03:00
Let's prettify all paragraphs
This commit is contained in:
parent
8bf3f31056
commit
4897847601
1 changed files with 10 additions and 0 deletions
|
@ -148,6 +148,16 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
p {
|
||||
/*
|
||||
white-space is shorthand for two values; white-space-collapse and text-wrap
|
||||
https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
|
||||
!important is needed to override higher specificity when elements are styled
|
||||
with `white-space` and 1 value, which doesn't have "pretty"
|
||||
*/
|
||||
text-wrap: pretty !important;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
text-decoration-color: var(--link-faded-color);
|
||||
|
|
Loading…
Reference in a new issue