Elao / elao-admin

๐Ÿ“Š ๐Ÿ“ˆ ๐Ÿ”‘ โš™๏ธ
https://elao.github.io/elao-admin/
MIT License
2 stars 0 forks source link

Tom-select with big label #56

Open benji07 opened 2 years ago

benji07 commented 2 years ago

On my project options of a tomselect are display with a weird indentation.

Capture dโ€™eฬcran 2022-08-31 aฬ€ 14 03 54

A bit of css is responsible for the bug (display flex)

I made a quick fix in my project by using the following style

.ts-dropdown-content .option {
  display: block;
  min-height: unset;
}