Skip to content

Commit

Permalink
fix(listbox): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryMatte committed Mar 26, 2024
1 parent 70f96ca commit b9af74b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ input + .c2 {
.c10::before {
background-color: #006296;
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
Expand Down Expand Up @@ -553,11 +553,11 @@ input + .c2 {
.c12::before {
background-color: #006296;
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
Expand Down Expand Up @@ -982,11 +982,11 @@ exports[`Dropdown list matches the snapshot (mobile) 1`] = `
.c8::before {
background-color: #006296;
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
Expand Down Expand Up @@ -1420,11 +1420,11 @@ input + .c2 {
.c11::before {
background-color: #006296;
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/components/listbox/listbox.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -469,11 +469,11 @@ exports[`Listbox Matches the snapshot 1`] = `
.c5::before {
background-color: #006296;
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/components/listbox/listbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ const ListItem = styled.li<ListItemProps>`
&::before {
/* TODO remplacer color token */
background-color: ${({ theme }) => theme.main['primary-1.1']};
content: "";
content: '';
display: block;
height: 100%;
position: absolute;
left: 0;
position: absolute;
width: 4px;
}
`)}
Expand Down

0 comments on commit b9af74b

Please sign in to comment.