We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In #90 we added default vertical spacing within wp-block-column
This is overriding the reduced margin that we apply using .wp-block-cata-kicker + *
.wp-block-cata-kicker + *
We can win the specificity fight pretty easily with !important
!important
We could also refactor how our version of .stack works to use CSS custom properties similar to the Every Layout version or this Flow and Rhythm example from CUBE CSS: https://cube.fyi/composition.html#flow-and-rhythm https://every-layout.dev/layouts/stack/
.stack
.wp-block-cata-kicker + * { --space: 0.375em; }
The text was updated successfully, but these errors were encountered:
douglas-johnson
No branches or pull requests
In #90 we added default vertical spacing within wp-block-column
This is overriding the reduced margin that we apply using
.wp-block-cata-kicker + *
We can win the specificity fight pretty easily with
!important
We could also refactor how our version of
.stack
works to use CSS custom properties similar to the Every Layout version or this Flow and Rhythm example from CUBE CSS:https://cube.fyi/composition.html#flow-and-rhythm
https://every-layout.dev/layouts/stack/
The text was updated successfully, but these errors were encountered: