I have simple scss file:
@media screen and (min-width: 1600px){
.left-col {
width: 135px;
}
}
It is imported one time at the jsx code by import './file.scss'
statement.
But when i look at Chrome dev tool i see this media query twice:
Why could this happen?