Skip to content

Commit

Permalink
fix(ld-switch): switch has wrong height
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdiakur committed Jan 19, 2023
1 parent 4b97613 commit 31945ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@
display: inline-grid;
font: var(--ld-switch-font);
font-weight: 700;
grid-auto-flow: column;
gap: var(--ld-switch-item-gap);
grid-auto-flow: column;
height: 100%;
justify-content: var(--ld-switch-item-justify-content);
line-height: 1.25;
overflow: hidden;
Expand Down
1 change: 1 addition & 0 deletions src/liquid/components/ld-switch/ld-switch.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@

:host fieldset {
width: 100%;
height: 100%;
}

:host(.ld-switch--sm),
Expand Down

1 comment on commit 31945ac

@vercel
Copy link

@vercel vercel bot commented on 31945ac Jan 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

liquid – ./

liquid-uxsd.vercel.app
liquid-git-main-uxsd.vercel.app
liquid-oxygen.vercel.app

Please sign in to comment.