Closes #25724 which had us doing more unnecessary math:
- height: calc(calc(2.25rem + 2px) - 1px * 2);
+ height: calc(2.25rem + 2px - 1px * 2);
By instead extending the $input-height-inner
variable:
- height: calc(calc(2.25rem + 2px) - 1px * 2);
+ height: 2.25rem;
Fixes #25717 (closed).
/cc @MartijnCuppens