you can use zoom in your custom .css file…
to zoom out, and make the modules smaller, use a number below 100%. IE: 75%
My mirror (unfinished) at 100%…
[image: 1527022596783-screenshot-1.png]
with the following code in custom.css…
/*****************************************************
* Magic Mirror *
* Custom CSS *
* *
* By Michael Teeuw http://michaelteeuw.nl *
* MIT Licensed. *
* *
* Add any custom CSS below. *
* Changes to this files will be ignored by GIT. *
*****************************************************/
body {
zoom: 75%;
}
it looks like this…
[image: 1527022692278-screenshot-6.png]
to zoom in (make them bigger, use a percentage over 100%, IE: 125%…
my Mirror at 125%…
[image: 1527022826822-screenshot-7.png]
using the following code in the custom.css…
/*****************************************************
* Magic Mirror *
* Custom CSS *
* *
* By Michael Teeuw http://michaelteeuw.nl *
* MIT Licensed. *
* *
* Add any custom CSS below. *
* Changes to this files will be ignored by GIT. *
*****************************************************/
body {
zoom: 125%;
}