linenames when using grid #1892
-
Does panda support linenames when using grid? I am trying to achieve the following import { css } from 'styled-system/css';
export const layout = css({
display: 'grid',
gridTemplateColumns: `
[full-start]
minmax(16px, 1fr)
[breakout-start]
minmax(0, 16px)
[content-start]
minmax(min-content, 1024px)
[content-end]
minmax(0, 16px)
[breakout-end]
minmax(16px, 1fr)
[full-end]
`,
}) I think it has something to do with how the classname is generated. |
Beta Was this translation helpful? Give feedback.
Answered by
anubra266
Jan 9, 2024
Replies: 1 comment 3 replies
-
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@chrispcode This has now been released. Thanks for pointing out the issue