mirror of
https://gitlab.com/cyclane/sbdatatracker.git
synced 2025-04-18 20:05:04 +00:00
19 lines
326 B
SCSS
19 lines
326 B
SCSS
@mixin add {
|
|
position: relative;
|
|
display: block;
|
|
&::before,
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: min(12em, 30%);
|
|
height: 0.3em;
|
|
background-color: hsl(30, 20%, 90%);
|
|
}
|
|
&::before {
|
|
transform: translate(-50%, -50%) rotateZ(90deg);
|
|
}
|
|
}
|