ETHReport/assets/styles/base/mixins.scss

14 lines
222 B
SCSS

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