Skip to content

Instantly share code, notes, and snippets.

@mio-U-M
Created February 22, 2020 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mio-U-M/274206112e3e8b3626acc3ffaa1c2b13 to your computer and use it in GitHub Desktop.
Save mio-U-M/274206112e3e8b3626acc3ffaa1c2b13 to your computer and use it in GitHub Desktop.
擬似要素のテンプレで書くところを省略するための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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment