Using an old version (v12.6.0), this CSS worked:
.CalendarDay--today {
box-shadow: inset 0 0 2px 1px rgba(0,0,255,1);
font-weight: bold;
}
To give this effect:

How can I do the same thing using a recent version?
I have searched and looked at the v13+ changes, but the answer does not seem obvious. Thanks!
Hmmm, it looks like this feature got removed by accident. Will add back!
This may have happened during the conversion to using withStyles. Previously there was this:
const className = cx('CalendarDay', {
'CalendarDay--outside': isOutsideDay,
}, Array.from(modifiers, mod => `CalendarDay--${mod}`));
And within modifiers is "today", so it would have set the class CalendarDay--today.
Put up a PR for a quick fix! :)
@majapw Thanks for the fast fix. It works for me (class changed to .CalendarDay__today).
Do you think there will be a release containing this sometime this week?
Yup! Working on a release right now :)
v15.2.0 is out! :D
Most helpful comment
v15.2.0 is out! :D