Replies: 2 comments 2 replies
-
@kogeletey please explain more about what you mean |
Beta Was this translation helpful? Give feedback.
0 replies
-
For example, writing the following code on panda const styles = css({
backgroundColor: 'gainsboro',
borderRadius: '9999px',
fontSize: '13px',
padding: '10px 15px'
})
<div className={styles} atomic="false" /> would generate css div:where(hash) {
background-color: gainsboro;
border-radius: 9999px;
font-size: 13px;
padding: 10px 15px;
} or some other way to specify this setting |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes, it is necessary to use one css file with a minimum number of classes.
For example, such an opportunity is needed when creating a blog.
Witch static generation of articles, the amount of code with classes significantly exceeds the amount of html code without classes.
Beta Was this translation helpful? Give feedback.
All reactions