My application is using UnoCSS, Nuxt 3 and my Style is using SCSS
One of my components has this style sheet
<style lang="scss">
.tag {
@apply shadow hover:shadow-lg hover:-translate-y-0.5 no-underline
capitalize border-b border-transparent rounded px-2 py-1 m-1 inline-block; //line is ignored
@apply bg-brand-supporting hover:border-gray-400 text-white;
}
</style>
Which works perfectly when running "nuxt dev", however, as soon as I deploy it, the rounding as well as padding is noticeable missing, while the hover shadow is working.
What is responsible for the multi-line @apply to work / to not work and how do I make it working?