Last active
January 17, 2018 06:24
-
-
Save coder618/bbdce00c3628d37ad7c233b07667392f to your computer and use it in GitHub Desktop.
Gist For pseudo element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin br-sudo-elemet( $width: null, $height:null, $t:null, $l:null, $b:null, $r:null, $z:null ){ | |
content: " "; | |
position: absolute; | |
@if($w) { width: $w ; } | |
@if($h) { height: $h ; } | |
@if($z) { z-index: $z ; } | |
@if($t) { top : $t ;} | |
@if($b) { bottom :$b ;} | |
@if($l) { left : $l ;} | |
@if($r) { right : $r ;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment