rob-balfre / svelte-select

Svelte Select. A select component for Svelte
https://svelte-select-examples.vercel.app
Other
1.25k stars 175 forks source link

how to make items larger than main select box #599

Closed kewp closed 1 year ago

kewp commented 1 year ago

I have a list of items where each item title is very long. How do I make the main select box a fixed with and have the drop-down list width expand to a bigger width?

kewp commented 1 year ago

I've managed to do it with this:

<style>
    :global(.svelte-select-list) {
        width: 800px !important; 
    }
</style>
ricochenft commented 10 months ago

I have to add div before .svelte-select-list in order for the style to be picked up.

<style>
    :global(div.svelte-select-list) {
        width: 800px !important; 
    }
</style>