modrinth / omorphia

A component & style library written for Vue 3

Home Page:https://omorphia.modrinth.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dropdown width isn't responsive.

IMB11 opened this issue · comments

I assumed the dropdown would be responsive. If it's intentionally not responsive just close this issue.


Workaround: Use display: flex on the parent div and enable flex grow.

.animated-dropdown {
  flex-grow: 1;
}

.element-that-contains-dropdown {
  display: flex;
}