This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
Oldphaloskepsis/plugins/jetpack/scss/_utilities/mixins/_full-width-bars.scss

21 lines
424 B
SCSS
Raw Normal View History

2017-01-12 23:10:07 +00:00
// ==========================================================================
// Full-width bars
// ==========================================================================
@mixin full-width-bars() {
// Still testing this one
position: relative;
z-index: 1;
&:before {
position: absolute;
content: "";
display: block;
top: 0;
left: -5000px;
height: 100%;
width: 15000px;
z-index: -1;
@content;
}
}