BinarCode/vue-form-wizard

how to remove the left line

lucaspieran opened this issue · 1 comments

InkedCaptura_LI

Hi! I need to remove the left line, how can I do it? Thank you so much

`.vue-form-wizard .wizard-navigation .wizard-progress-with-circle {
position: relative;
overflow: hidden;
/* background-color: gray; */
}

.vue-form-wizard .wizard-navigation .wizard-progress-with-circle::before {
content: "";
width: 60px;
height: 100%;
position: absolute;
display: block;
background-color: $darktheme-background;
top: 0;
}
.vue-form-wizard .wizard-navigation .wizard-progress-with-circle::after {
content: "";
width: 60px;
height: 100%;
position: absolute;
display: block;
background-color: $darktheme-background;
top: 0;
right: 0;
}

.wizard-icon::after{
content: '';
display: none;
}
`