Skip to content

Commit 9de367d

Browse files
committed
fix(ffe-form): add 1px to border of input when it is in focus
1 parent 606c28b commit 9de367d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/ffe-form/less/input-field.less

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
&:focus,
3030
&:active {
3131
border: var(--ffe-g-border-width-focus) solid var(--ffe-g-primary-color);
32+
box-shadow: 0 0 0 1px var(--ffe-g-primary-color);
3233
outline: none;
3334
}
3435

@@ -64,7 +65,8 @@
6465
}
6566

6667
&:focus {
67-
border-bottom: var(--ffe-g-border-width-focus) solid var(--ffe-g-primary-color);
68+
border-bottom: var(--ffe-g-border-width-focus) solid
69+
var(--ffe-g-primary-color);
6870
}
6971

7072
&[aria-invalid='true'] {

0 commit comments

Comments
 (0)