thisbeyond / solid-select

The Select component for Solid.
https://solid-select.com
MIT License
172 stars 18 forks source link

inline style #33

Closed rooflesia closed 1 year ago

rooflesia commented 1 year ago

how to add inline style?

martinpengellyphillips commented 1 year ago

The builtin component doesn't support passing custom style to the various components beyond passing a custom style class.

rooflesia commented 1 year ago

so do you have any solution for example to add padding inside the select?

martinpengellyphillips commented 1 year ago

Yes - see the example for custom styling on https://solid-select.com/ and modify to add the padding you want. E.g in your CSS do the following and pass class='custom' to the select control.

.custom .solid-select-control {
  padding: 20px;
}
rooflesia commented 1 year ago

thanks martin excellent work!👏