Add text-align justify to 4.8.0 branch.
This commit is contained in:
parent
c58e696d73
commit
7fc27570dd
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
l = left
|
||||
r = right
|
||||
c = center
|
||||
j = justify
|
||||
|
||||
Media Query Extensions:
|
||||
-ns = not-small
|
||||
|
@ -21,22 +22,26 @@
|
|||
.tl { text-align: left; }
|
||||
.tr { text-align: right; }
|
||||
.tc { text-align: center; }
|
||||
.tj { text-align: justify; }
|
||||
|
||||
@media (--breakpoint-not-small) {
|
||||
.tl-ns { text-align: left; }
|
||||
.tr-ns { text-align: right; }
|
||||
.tc-ns { text-align: center; }
|
||||
.tj-ns { text-align: justify; }
|
||||
}
|
||||
|
||||
@media (--breakpoint-medium) {
|
||||
.tl-m { text-align: left; }
|
||||
.tr-m { text-align: right; }
|
||||
.tc-m { text-align: center; }
|
||||
.tj-m { text-align: justify; }
|
||||
}
|
||||
|
||||
@media (--breakpoint-large) {
|
||||
.tl-l { text-align: left; }
|
||||
.tr-l { text-align: right; }
|
||||
.tc-l { text-align: center; }
|
||||
.tj-l { text-align: justify; }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue