Skip to content

Commit

Permalink
update outline not visible on focus
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienSvstr committed Jan 15, 2024
1 parent 17bb72f commit 6614eeb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/src/theme/components/inputs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
display: flex;
flex-direction: column;
gap: 0.5rem;
position: relative;
z-index: 10;
padding: 0.25rem;
}

.input-item {
display: flex;
display: inline-flex;
--background: var(--parsec-color-light-secondary-white);
background: var(--parsec-color-light-secondary-white);
flex-grow: 1;
Expand All @@ -21,11 +24,13 @@
color: var(--parsec-color-light-primary-800);
padding-left: 1rem;
transition: all 0.2s ease-in-out;
position: relative;

&:focus-within {
border: 1px solid var(--parsec-color-light-primary-400);
--background: var(--parsec-color-light-secondary-white);
outline: 0.25rem solid var(--parsec-color-light-outline);

}
}

Expand Down

0 comments on commit 6614eeb

Please sign in to comment.