[CSS] Center children elements
Best way to do is using grid:
.input__control { display: grid; place-content: center; width: 1em; height: 1em; border: 0.1em solid var(--color-default, color("default")); }
Best way to do is using grid:
.input__control { display: grid; place-content: center; width: 1em; height: 1em; border: 0.1em solid var(--color-default, color("default")); }