Date picker styling #3038
-
Hey i am tryig to style Date picker component with no luck. In classNames i can not style inputWrapper (whatever i write there it does not get to input-wrapper, it seems that it is not connected) and if i choose variant="bordered" there is no way how to edit the background color as the background color is on inputWrapper. Any guidance on how to change any of this would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
see #2895 currently it's not supported yet. |
Beta Was this translation helpful? Give feedback.
-
How do i change that today dates bg color?. Im using nextui calendar but only numbers showing when i change style text-black. |
Beta Was this translation helpful? Give feedback.
-
I recently went through this, the way it is working for me is: `import { useState } from "react"; const MyDatePickerComponent = () => { const stylesDatePicker = { const stylesDateInput = { return ( export default MyDatePickerComponent;` This is how the border of my component stays in place while the calendar opens and I choose the date. |
Beta Was this translation helpful? Give feedback.
see #2895
currently it's not supported yet.