Hi, is there some way how can I style ONLY time button inside ion-datetime-button ?
this is my css which work for both date and time button
ion-datetime-button::part(native) {
background: transparent;
padding-inline-start: 0;
}
what is not working is this
ion-datetime-button::part(native) {
background: transparent;
padding-inline-start: 0;
#time-button {
background: red;
}
}