I’m trying to create spaces between elements using this:
.container {
display: flex,
flex-direction: column, // seems to work until here.
gap: 0.5rem // this one don’t work.
}
I’m using svelte by the way.
thank you!
I’m trying to create spaces between elements using this:
.container {
display: flex,
flex-direction: column, // seems to work until here.
gap: 0.5rem // this one don’t work.
}
I’m using svelte by the way.
thank you!
Unfortunately, gap does not work in UXP at this time. It was easier to use Spacer components in UXP, in my personal opinion.
thank you! i will try the spacer instead