I'm new to tailwindcss, and i want to use both sassy css and tailwind for my new project. But I'm having trouble with the nesting specially when i used "@apply".
section {
@apply .p-4;
ul {
li {
@apply .ml-8 .text-red-600;
li:last-child {
@apply .text-gray-300;
}
}
}
}
the red color apply to all li but the last-child (gray color) is not working. I'm not sure if it's possible