fix: move blue line to pseudo element

This commit is contained in:
Shobhit-Nagpal
2025-10-20 16:19:33 +05:30
committed by Carlos Valente
parent 5788785b3e
commit dd2b59efe5
@@ -2,15 +2,21 @@
display: flex;
align-items: center;
gap: 1rem;
height: 0;
position: relative;
background: $blue-500;
z-index: $zindex-floating;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: $blue-500;
}
}
.addButton {
position: absolute;
top: 0;
left: 0;
transform: translateY(-50%);
position: relative;
}