Skip to content

Commit

Permalink
Update css
Browse files Browse the repository at this point in the history
  • Loading branch information
ElishaSamPeterPrabhu committed Jul 4, 2024
1 parent 82d149a commit 9894878
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
--input-font-size: var(--modus-autocomplete-font-size, #{12px});

&::part(input-container) {
height: 1.875rem;
border: none !important;
box-shadow: none;
height: 1.875rem;
}
}
}
Expand Down Expand Up @@ -158,6 +158,18 @@
}

&.large {
.chips-container {
.input {
&::part(input-container) {
height: 3rem;
}
}
}

.icon-search {
margin-left: 8px;
}

.options-container > .text-option {
font-size: $rem-14px;
min-height: 3rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ export class ModusAutocomplete {
<modus-chip
value={chip.value}
chipId={chip.id}
size="small"
size={this.size === 'large' ? 'medium' : 'small'}
show-close
onCloseClick={() => this.handleCloseClick(chip)}></modus-chip>
))}
Expand Down

0 comments on commit 9894878

Please sign in to comment.