I am attempting to customize the appearance of a vuejs-datepicker component from https://www.npmjs.com/package/vuejs-datepicker
<datepicker
format="dd/MM/yyyy"
calendar-class="my_calendar"
input-class="textfield"
name="my_date" />
Although I have specified a width rule in my styles, my datepicker does not seem to adjust its width as expected
.my_calendar {
width: 100px !important;
}
Does anyone have any suggestions on how to resolve this issue? Alternatively, is there another plugin available for implementing a datepicker in vuejs?
Appreciate any help!