Привет. vue cli. В компоненте scss стили. Если изменяю в классе что-то, а потом запускаю сборку, то в css файле будет старый класс и такой же класс с изменениями... Например:
.input {
&__wrapper {
&::before {
position: relative;
content: '';
top: .1em;
display: inline-block;
width: 2em;
height: 2em;
border: 2px solid #d5bf7d;
margin-right: 10px;
}
}
}
Получаю:
.input __wrapper:before {
width: 2em;
height: 2em
}
.input __wrapper:before {
position: relative;
content: "";
top: .1em;
display: inline-block;
width: 1em;
height: 1em;
border: 2px solid #d5bf7d;
margin-right: 10px
}
Как исправить?