Yes sorry, a question on this once more :-)
I'm implementing a design that uses a sort of "section header" basically a single column row with a colour scheme, with a text paragraph thas must be aligned in the center.
By default the row height is quite large, which seems to stem from the --swift-content-padding: 2rem;
I was able to create a seperate layout for the text paragraph where I reduce this heigth by adding a div : <div style="--swift-content-padding: 0.5rem;">
I could probably move that to the column, by adding a different ID and specifying the padding in CSS, but then if I want this reduced padding for all row types, I'm still creating quite a lot of stuff for 1 change.
Anything smart I'm forgetting or not understanding (again :-))