Skip to content

Commit

Permalink
fix(ix): apply CSS Choice height/overflow on first-child
Browse files Browse the repository at this point in the history
  • Loading branch information
caugner committed Feb 21, 2025
1 parent 3e866e9 commit 4130c28
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/src/lit/interactive-example/choice.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ body {
background-color: var(--background-primary);
display: flex;
justify-content: center;
height: 300px;
font: var(--type-body-l);
padding: 1em;
overflow: hidden;

> :first-child {
height: 300px;
overflow: hidden;
}
}

0 comments on commit 4130c28

Please sign in to comment.