stylers
stylers copied to clipboard
Fully compile time scoped CSS for Leptos components
```css div >:deep(h3) { color: orange; } ``` error render: ```css div.test .test>h3{color: orange;} ``` should be: ```css div.test>h3{color: orange;} ```
Hello. I came from Linaria and there is convinient way to write CSS-in-JS: ```jsx ``` I see now `stylers` doesn't produce output if no parent selector provided: ```rust let class_name...
When I use ```css :deep(.manage-atcs-item span:first-child){ flex: 1 1 1; } ``` It returns ```css .manage-atcs-item span:first-child { flex: 1 1 1; } ``` But when I write ```css :deep(.manage-atcs-item...