A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
weather module
-
I have been looking at updating the icons and I think it will go like below.
Is there a way to add words for example next to the icon the word Sunny is displayed ?
.wi-day-sunny { background-image: url("path/icons/sunny.svg"); background-size: contain; width: 10px; height: 10px; display: inline-block; vertical-align: middle; }
-
@dcazman yes, you could use the :before or :after selector
.wi-day-sunny:after{ content: "something"; }
-