My Mixins
Fri May 17 2024 07:42:13 GMT+0000 (Coordinated Universal Time)
Saved by
@vishalsingh21
@mixin pseudoInit{
content: "";
display: block;
position: absolute;
left: 0; top: 0;
z-index: -1;
}
@mixin beforeContainer($bg: transparent, $w: 100%, $h: $w){
position: relative;
z-index: 1;
&::before{
@include pseudoInit;
background: $bg;
width: $w;
height: $h;
}
}
@mixin afterContainer($bg: transparent, $w: 100%, $h: $w){
&::after{
@include pseudoInit;
background: $bg;
width: $w;
height: $h;
}
}
content_copyCOPY
Comments