tagami-mio
1/28/2020 - 7:36 AM

before-and-after-mixin

擬似要素のテンプレで書くところを省略するためのmixin

@mixin simple-before {
  &::before {
    content: '';
    @content;
  }
}

@mixin simple-after {
  &::after {
    content: '';
    @content;
  }
}

@mixin solid-before {
  &::before {
    display: block;
    content: '';
    @content;
  }
}

@mixin solid-after {
  &::after {
    display: block;
    content: '';
    @content;
  }
}