Skip to content

Commit

Permalink
fix(combobox): text size
Browse files Browse the repository at this point in the history
  • Loading branch information
andresin87 committed Apr 29, 2024
1 parent 07c8ab2 commit 2ecc291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/combobox/src/ComboboxInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const Input = forwardRef(
type="text"
placeholder={placeholder}
className={cx(
'h-sz-28 shrink-0 flex-grow basis-[80px] text-ellipsis px-sm outline-none',
'h-sz-28 shrink-0 flex-grow basis-[80px] text-ellipsis px-sm text-body-1 outline-none',
'disabled:cursor-not-allowed disabled:bg-transparent disabled:text-on-surface/dim-3',
'read-only:cursor-default read-only:bg-transparent read-only:text-on-surface',
className
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { cva } from 'class-variance-authority'

export const styles = cva(
[
'flex items-start gap-md min-h-sz-44',
'flex items-start gap-md min-h-sz-44 text-body-1',
'h-fit rounded-lg px-lg',
// outline styles
'ring-1 outline-none ring-inset focus-within:ring-2',
Expand Down

0 comments on commit 2ecc291

Please sign in to comment.