所以我对 ionic 5 for vue 有问题,我正在使用 ion-select & ion-select-option 组件。所以我想做的事情是
- 改变宽度
- 当内容足够长时, ion-select-option 中的文本将中断并向下创建新行
我已经尝试过 variable.css 但仍然无法正常工作
所以这是我的CSS代码
width: 100%;
}
.sc-ion-alert-md-h{
--min-width: 90% !important;
}
.alert-wrapper.sc-ion-alert-md{
color: red;
}
.select-full-width {
/* max-width: 100% !important; */
/* width: 100% !important; */
padding-left: 0 !important;
--max-width: 700% !important;
}
.alert-wrapper .sc-ion-alert-md {
/* width: 700% !important; */
--max-width: 700% !important;
}
.alert-radio-label .sc-ion-alert-md {
text-overflow: unset !important;
white-space: unset !important;
}```