TerryZ / v-selectmenu

SelectMenu for Vuejs, A simple, easier and highly customized menu solution
https://terryz.github.io/docs-vue/#/selectmenu
MIT License
187 stars 25 forks source link

Long text options #13

Closed martiendt closed 4 years ago

martiendt commented 5 years ago

Hi, if i have an option with long text, it will offset from browser. This need ability to wrap the text into multiple row.

screen shot 2018-10-24 at 9 11 23 am

martiendt commented 5 years ago
.sm-item-text {
  white-space: pre-wrap;
}

I tried added this but i got other issue with v-dropdown dependencies, it should prevent left: <minus>

screen shot 2018-10-24 at 10 43 39 am

My Workaround add this style in component

.sm-item-text {
  white-space: pre-wrap;
}
.v-dropdown-container {
  max-width: 75%;
}

screen shot 2018-10-24 at 10 59 25 am

TerryZ commented 4 years ago

Fixed in version v2.0.2.