Manage space between two components in a container

I have a container with two components (a table and a rich text) displayed side by side.
Is it possible to adjust the spacing between them? They are currently too close, which makes it harder to read
Thanks for you help

Use Custom CSS on the container:

.section-container .container-padding-md {
    gap: 0 60px;
}
1 Like

Great! thanks

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.