I'm trying to get a child/deep selector going within SCSS. However the output css is not as expected. This issue is similar to How do I use /deep/ or >>> in Vue.js? However they use webpack and vue-loader rather then parcel.
I've tried:
.example >>> .example-child {
font-size: 20px;
}
This however generates
.example > .example-child[data-v-bb9328] {
font-size: 20px;
}
While I would need the following:
.example[data-v-bb9328] > .example-child {
font-size: 20px;
}
The Parcel documentation is quite barebone and I couldn't really find any notes in regards to this in the github. Is this not a supported feature or am I just not seeing something?