1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 00:39:25 +00:00

Added sass, and initial sass partials

This commit is contained in:
2022-01-25 11:20:12 +00:00
parent fc00ecd2c5
commit 6c114bd9c2
8 changed files with 227 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
@mixin on-event($self: false) {
@if $self {
&,
&:hover,
&:active,
&:focus {
@content;
}
} @else {
&:hover,
&:active,
&:focus {
@content;
}
}
}