One file was OK when we only had a couple of mixins, but recently we've been adding quite a few. We can now avoid a SCSS Lint warning by excluding just the file with the affected mixin.
8 lines
209 B
SCSS
8 lines
209 B
SCSS
@mixin header-font-size($heading-tag) {
|
|
@each $size, $headers in $header-styles {
|
|
@include breakpoint($size) {
|
|
font-size: rem-calc(map-get(map-get($headers, $heading-tag), font-size));
|
|
}
|
|
}
|
|
}
|