Skip to content

Instantly share code, notes, and snippets.

@coder618
Last active January 17, 2018 06:24
Show Gist options
  • Save coder618/bbdce00c3628d37ad7c233b07667392f to your computer and use it in GitHub Desktop.
Save coder618/bbdce00c3628d37ad7c233b07667392f to your computer and use it in GitHub Desktop.
Gist For pseudo element
@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