A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Move the number in each day of monthly calendar
-
Re: MMM-CalendarExt3
How do I move the date number to the bottom left or right of the days box. Instead of the upper right, I would like the bottom right.
I can not figure out what the correct syntax is to do this.Help,
Thank you. -
put this into your
css/custom.css
;.CX3 .cell { display: flex; flex-direction: column; } .CX3 .cell > div { order: 1; } .CX3 .cell .cellHeader { order: 2; } .CX3 .eventContainer { bottom: calc(var(--cellHeaderHeight) + var(--cellFooterHeight)); }
-
@MMRIZE
Thank you so much. I would have never come to that conclusion.