so im having a problem with ionic 5 for vue, im using ion-select & ion-select-option component. So the things i wanted to do are
- changing the width
- the text inside ion-select-option will break and go down making the new line when the content is long enough
and i already tried from variable.css and still not working
so this is my css code
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;
}```