summaryrefslogtreecommitdiff
path: root/themes/hugo-coder/assets/scss/_base_rtl.scss
blob: e237fd5d05dd6384033dfeedf4e6d5fdd270e7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
body.rtl {
  direction: rtl;

  pre {
    direction: ltr;
  }

  blockquote {
    border-left: none;
    border-right: 2px solid $alt-bg-color;
    padding-left: 0;
    padding-right: 1.6rem;
  }

  table tr td:first-child,
  table tr th:first-child {
    border-right: 0;
  }

  table tr td:last-child,
  table tr th:last-child {
    border-left: 0;
  }
}