petalframework / petal_components

Phoenix + Live View HEEX Components
https://petal.build/components
MIT License
767 stars 84 forks source link

Combo-box single select bottom border radius #303

Open ParaleGleniel opened 4 months ago

ParaleGleniel commented 4 months ago

After selecting an option in the select, the bottom border radius is not rounded until you click away from the component.

nallwhy commented 3 months ago

Add this to combo-box.css.

/* Fix broken border */
.ts-dropdown .option:last-child {
  @apply rounded-lg;
}
nallwhy commented 3 months ago

I hope it would be merged.