Margin in dropdown

Hey, Weweb team.

I’m wondering how I can add a margin between input and dropdown

To make it look like this

Hey @andrii_r

I assume you are user the Select component. As of right now, I don’t think there is an option for that.
But what can be done is user some custom CSS (you can add that in an HTML Embed to preview it in the editor) to move the multiselect-dropdown like you want!

.multiselect-dropdown {
    bottom: -4px;
}
1 Like

It worked :slight_smile: thank you

1 Like