ETHReport/assets/styles/base/mixins.scss

14 lines
222 B
SCSS
Raw Normal View History

2018-07-17 15:06:53 +02:00
@mixin hasRedUnderline() {
&::before {
content: '';
width: 100%;
height: calculateRem(1);
background-color: $red;
position: absolute;
bottom: calculateRem(3);
2018-07-17 15:06:53 +02:00
left: 0;
z-index: -1;
}
}