Justify text in articles

This commit is contained in:
Fabrice Mouhartem 2019-04-24 10:08:24 +05:30
parent 8faf6be4f2
commit a80cd5d18e
2 changed files with 10 additions and 1 deletions

View File

@ -413,3 +413,12 @@ body {
padding-top:10px;
padding-bottom: 10px;
}
/* Text justification (not on narrow screens */
.container article p {
text-align: justify;
}
@media only screen and (max-width: 600px) {
.container article p {
text-align: left;
}
}

File diff suppressed because one or more lines are too long