themes/hugo-coder/assets/scss/_base_rtl.scss

64c6cae85faf11d75ab3de1685916d87dbf18197 · 357 B · 24 lines raw

1 body.rtl {
2 direction: rtl;
3
4 pre {
5 direction: ltr;
6 }
7
8 blockquote {
9 border-left: none;
10 border-right: 2px solid $alt-bg-color;
11 padding-left: 0;
12 padding-right: 1.6rem;
13 }
14
15 table tr td:first-child,
16 table tr th:first-child {
17 border-right: 0;
18 }
19
20 table tr td:last-child,
21 table tr th:last-child {
22 border-left: 0;
23 }
24 }