mirror of
https://github.com/status-im/ETHReport.git
synced 2025-02-05 02:53:52 +00:00
14 lines
222 B
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;
|
|
}
|
|
}
|