mirror of
https://github.com/manualdousuario/marreta.git
synced 2025-09-01 18:20:22 +00:00
23 lines
No EOL
498 B
SCSS
23 lines
No EOL
498 B
SCSS
@use "sass:math";
|
|
@use "sass:color";
|
|
|
|
@mixin create-color($name, $hex) {
|
|
--#{$name}: #{$hex};
|
|
--#{$name}-lighten: #{color.adjust($hex, $lightness: 5%)};
|
|
--#{$name}-darken: #{color.adjust($hex, $lightness: -10%)};
|
|
}
|
|
|
|
@mixin devices($breakpoint) {
|
|
@if $breakpoint == desktop {
|
|
@media only screen and (min-width: 1200px) {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin icon($name, $filter) {
|
|
.icon--#{$name} {
|
|
background-image: url("../dist/icons/#{$name}.svg");
|
|
filter: #{$filter};
|
|
}
|
|
} |