Thread: Clock colour?
View Single Post
MK99's Avatar
Posts: 644 | Thanked: 480 times | Joined on Jul 2012 @ Finland
#87
Originally Posted by zzs View Post
The maximum font size seem to be 13 mm without cutting the lower edges of the numbers away. I would like to increase the font size so that the clock will fill the entire width of the screen (I think the font size should be 20 mm or so).

How could I do that?
The three lowermost lines must also be changed.

Code:
LockScreen MLabelStyle#LockScreenLowPowerModeClockLabel {
    font: $FONT_FAMILY_LIGHT 20mm;
    color: #ffffff;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    preferred-size: -1 20mm;
    minimum-size: -1 20mm;
    maximum-size: -1 20mm;
}