Skip to content

Commit

Permalink
fix(catalogue): match input and autocomplete-options width
Browse files Browse the repository at this point in the history
  • Loading branch information
MatsJohansen87 committed Oct 12, 2023
1 parent dfbd1ee commit a81b1d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/demo/src/styles/default/catalogue.css
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,14 @@ lens-catalogue::part(autocomplete-formfield-input):focus {
}

lens-catalogue::part(autocomplete-options) {
box-sizing: border-box;
z-index: 1;
list-style-type: none;
padding: 0;
margin: 0;
border: solid 1px var(--light-blue);
border-top: none;
width: calc(100% - 2*var(--gap-s) - 2px);
/* padding of container plus borders */
width: 100%;
position: absolute;
background-color: white;
color: black;
Expand Down

0 comments on commit a81b1d6

Please sign in to comment.