Does css "gap" work in UXP panels for PrPro?

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.

2 Likes

thank you! i will try the spacer instead

1 Like