mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-06 02:30:54 -08:00
14 lines
183 B
SCSS
14 lines
183 B
SCSS
@mixin example_tag() {
|
|
body {
|
|
@content;
|
|
}
|
|
}
|
|
@mixin example_property() {
|
|
font-size: 16px;
|
|
}
|
|
|
|
@mixin example() {
|
|
@include example_tag {
|
|
@include example_property;
|
|
}
|
|
}
|