openreplay/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.module.css
2022-06-08 16:16:41 +02:00

25 lines
No EOL
491 B
CSS

.step {
/* display: flex; */
position: relative;
transition: all 0.5s ease;
&:before {
content: '';
border-left: 2px solid $gray-lightest;
position: absolute;
top: 16px;
bottom: 9px;
left: 10px;
/* width: 1px; */
height: 100%;
z-index: 0;
}
&:last-child:before {
display: none;
}
}
.step-disabled {
filter: grayscale(1);
opacity: 0.8;
transition: all 0.2s ease-in-out;
}