fix: indicator should not expand header height

This commit is contained in:
alistair3149 2022-10-22 16:38:46 -04:00
parent 852256a75d
commit 1cb5cfb6c7
No known key found for this signature in database

View file

@ -1,4 +1,5 @@
@width-bounce-dot: 12px;
@height-indicator: 2px;
.tabber {
position: relative;
@ -91,9 +92,10 @@
}
&__indicator {
margin-top: @height-indicator * -1;
background: #36c;
block-size: 2px;
border-radius: 2px;
block-size: @height-indicator;
border-radius: @height-indicator;
inline-size: 0;
}