ETHReport/assets/styles/base/mixins.scss
2018-07-17 15:06:53 +02:00

14 lines
208 B
SCSS

@mixin hasRedUnderline() {
&::before {
content: '';
width: 100%;
height: calculateRem(1);
background-color: $red;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
}
}