1
0

_base_rtl.scss 356 B

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