Fix(StyleSheet): Fix wrong styles

This commit is contained in:
2024-10-23 17:09:51 +08:00
parent a467ad2021
commit dc1c052f69
5 changed files with 31 additions and 13 deletions

View File

@@ -1,9 +1,12 @@
import { createStyles } from 'antd-style'
export default createStyles(() => ({
flexBox: {
'> *': {
flex: 1
export default createStyles(
() => ({
flexBox: {
'> *': {
flex: 1
}
}
}
}))
}),
{ hashPriority: 'low' }
)