"The :deep() selector in Vue3 is invalid when using the PrimeVue library"
<p>I am using vue3 and PrimeVue library. When I try to override the PrimeView component's css field using the <code>:deep()</code> selector, it has no effect. It only applies my changes when I use unscoped styles. I'm confused as to why it doesn't work. </p>
<p>Sample code with <code>:deep()</code>: </p>
<pre class="brush:js;toolbar:false;"><template>
<Toast position='buttom-right'/>
</template>
<style scoped>
:deep(.p-toast-message-icon) {
margin-right: 10px !important;
}
</style>
</pre>
<p>This doesn't work. </p>
<p>But when using <code>style</code> without scope, like this: </p>
<pre class="brush:js;toolbar:false;"><style>
.p-toast-message-icon {
margin-right: 10px !important;
}
</style>
</pre>
<p>That works. </p>