Hi there @Daniele
I have these selectors for spacing adjacent siblings elements between. It works on sections, containers, blocks and divs in Bricks Builder. But the question is, how can i get this to work in Bricksforge global class creator? Is it even possible. it won’t generate the classes properly:
it can only generate if i have them like this .owl–xs > * + * { margin-top: 2rem; } not when the selector is more advanced, which i need.
I need these without having to use my child-theme, cause i use Bricksforge for everything and only want my classes, variables in one place. Hope you can help
.brxe-section.brf-owl–xs .brxe-container > * + *,
.brf-owl–xs:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-xs);
}
.brxe-section.brf-owl–s .brxe-container > * + *,
.brf-owl–s:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-s);
}
.brxe-section.brf-owl–m .brxe-container > * + *,
.brf-owl–m:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-m);
}
.brxe-section.brf-owl–l .brxe-container > * + *,
.brf-owl–l:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-l);
}
.brxe-section.brf-owl–xl .brxe-container > * + *,
.brf-owl–xl:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-xl);
}
.brxe-section.brf-owl–xxl .brxe-container > * + *,
.brf-owl–xxl:not(.brxe-section) > * + * {
margin-top: var(–brf-spacing-xxl);
}