mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
21.13.2022 be3218290dc63ba251bfd2fe4d4dccb2122f4bbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.category {
  padding: 4px 6px;
  border-radius: 2px;
  display: inline-block;
  font-size: 1.4rem;
 
  @include themed() {
    border: t('border');
    background-color: t('primary-lighter');
    color: t('primary') !important;
  }
 
  @include ltr {
    margin: 5px 8px 5px 0;
  }
 
  @include rtl {
    margin: 5px 0 5px 8px;
  }
}