mirror of
https://github.com/status-im/ETHReport.git
synced 2025-01-10 14:15:46 +00:00
14 lines
208 B
SCSS
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;
|
|
}
|
|
}
|