How do I round them all at once via CSS?
There is a variable you can use, which is applied to most (regular) inputs:
var(--d-input-border-radius);
So set that variable in the root of your css to a value of your liking:
:root {
--d-input-border-radius: 20px;
}
There might be some cases where you have to manually touch up though, but this should be a good start.
Thanks, where can I see my forum Discourse variables?
thank so much

