A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Tilting the display by a couple of degrees to make it straight
-
@alborzs
I rotated my screen from landscape to portrait using custom.css.
Cannot find the topic in this forum, but this is the body in my custom.css file:body { margin: 0; position: absolute; transform: rotate(-90deg); transform-origin: top left; width: 100vh; height: 100vw; object-fit: cover; top: 100vh; visibility: visible; }
Perhaps you give it a try with different degrees in the rotate() parameter.
-
This reminds me of a joke.
Q: How many software engineers does it take to change a light bulb?
A: None. It’s a hardware problem.
Q: How many hardware engineers does it take to change a light bulb?
A: None. Just tell the software engineers to code around it. -
-
You know what, @evroom s solution might just work.
Tried it and it isn’t half bad, it gets blurry, but not overly so. (disclaimer, tried this on a 24" 1440p display)
body { transform: rotate(0.2deg); transform-origin: top left; }
-