Enable RTL layout by providing 'rtl = true' in the config (#72)

This commit is contained in:
Khosrow Moossavi
2018-09-01 08:18:10 -04:00
committed by Luiz F. A. de Prá
parent 333e6358c8
commit 42d75aefe4
10 changed files with 81 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
body.rtl {
.list {
ul {
li {
span {
text-align: left;
margin-left: 3.0rem;
margin-right: 0;
@media only screen and (max-device-width : 768px) {
text-align: right;
}
}
}
}
}
}