Hello,
The last update uniform focus style has a new mixin which is add an outline the input fields, selections and other… This is a great for accessibility but we use a border-radius: 4px
on input fields. Is that possible to override mixins or add a border-radius: 0
into the core mixins.scss and this generate border-radius: 4px to 0 on focus?
On the left it looks like now and right is after border-radius: 0;
Thank you!
@mixin default-focus() {
border-color: var(--tertiary);
+ border-radius: 0;
outline: 1px solid var(--tertiary);
outline-offset: 0;
}