Improve Adobe Experience Manager Developer Experience – AEM Newsaem.news1 points·by jzeltman·6 yıl önce·0 comments
jzeltman·5 yıl önce·discussCheck out this extension for VSCode which organizes your classes on save. https://marketplace.visualstudio.com/items?itemName=heybourn...Otherwise, I usually try to separate out states when using @apply.` .example { @apply bg-blue-100; @apply hover:bg-blue-200; @apply focus:bg-blue-200; `But now with JIT you could simplify if you wanted to:`.example { @apply bg-blue-100; @apply hover:focus:bg-blue-200;`
Otherwise, I usually try to separate out states when using @apply.
` .example { @apply bg-blue-100; @apply hover:bg-blue-200; @apply focus:bg-blue-200; `
But now with JIT you could simplify if you wanted to:
`.example { @apply bg-blue-100; @apply hover:focus:bg-blue-200;`