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

alexanderdavide
20.47.2022 708d5c1fbc80428f01cb5c8a627fc157ec4ca561
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.info {
  margin: 1em;
 
  &__icon {
    opacity: 0.5;
 
    @include ltr {
      margin-right: 4px;
    }
 
    @include rtl {
      margin-left: 4px;
    }
  }
 
  &__text {
    &:not(:last-child) {
      @include ltr {
        margin-right: 4px;
      }
 
      @include rtl {
        margin-left: 4px;
      }
    }
  }
}