A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Getting MMM-CalendarExt3Agenda to show more than 10 days out
-
@smegbadger you also need to do a new
npm run install-mm -
Hi
I ran
npm run install-mm
in the docker container as the above commands and rebooted. The agenda is still truncatedSteve
-
@smegbadger AND restarted the container??
-
Hi
I’ve discovered the CSS for the agenda module has a hard height limit
.CX3A .agenda { max-height: 600px; }
increasing that to
1325px
fills the screen height . I can’t tell if that was the problem all along as the patch is in place now!overriding the font and width as follows has given me the size of agenda I wanted.
.CX3A { font-size: 30px; max-width: 600px; } .CX3A .event .headline.useSymbol .symbol { font-size: 25px; }
many thanks for your help
-
@smegbadger awesome!!
-