16 lines
192 B
SCSS
16 lines
192 B
SCSS
@mixin respond-to($breakpoint) {
|
|
@media (max-width: $breakpoint) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin textElements() {
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
{
|
|
@content;
|
|
}
|
|
} |