How do I remove decoration/outline/border on a focused (but not selected) day? #2634
Unanswered
jsimmonstx
asked this question in
Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm currently using the modifier styles to change the days appearance, and for the most part it''s working pretty good.
When the user uses an arrow key to navigate within the calendar, the focused day has a border around it that I'd like to eliminate. I tried setting outline, border, and even textDecoration, but noting seems to work. Here's my modifier style:
focused: { color: "white", backgroundColor: "#2a2a2a", borderRadius: "50%", backgroundSize: "cover", outline: "0px solid transparent !important", border: "0px solid transparent !important", textDecoration: "none", },
BTW, I used "!important" out of desperation.
Beta Was this translation helpful? Give feedback.
All reactions