themes/hugo-coder/assets/scss/_base_rtl.scss
531ea5ceb6eb29f386fd09dfeee460ab6359d92d
· 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 | } |