You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will isolate the style of each component very well, and Sass can also make writing CSS faster.
Implement Suggestion
component.module.scss
.box {}
.btn {}
.btn__disable {}
static style:Asset = asset!("/assets/component.module.scss");rsx!{
div {
class:style.box,
button:{
class:[style.btn,style.btn__disable],// Support multiple class names can be represented by an array"Button Text"}}}
The text was updated successfully, but these errors were encountered:
jkelleyrtp
changed the title
Hope to add sass module support
Sass module support
Jan 7, 2025
Feature Request
This will isolate the style of each component very well, and Sass can also make writing CSS faster.
Implement Suggestion
component.module.scss
The text was updated successfully, but these errors were encountered: