mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 19:09:43 +00:00
23 lines
368 B
SCSS
23 lines
368 B
SCSS
@mixin clearfix() {
|
|
&:before,
|
|
&:after {
|
|
content: " ";
|
|
display: table;
|
|
}
|
|
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
@mixin min-screen($min-width: $global-body-width) {
|
|
@media screen and (min-width: $min-width) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin max-screen($max-width: $global-body-width) {
|
|
@media screen and (max-width: $max-width) {
|
|
@content;
|
|
}
|
|
}
|