sync current time block height with analog clock

This commit is contained in:
Kiyomichi Kosaka 2025-06-15 14:27:24 +02:00
parent 433c4e6a75
commit 69e426d9ce

View File

@ -72,7 +72,7 @@
display: flex;
flex-direction: column;
justify-content: center;
height: 40vmin;
height: var(--clock-size);
}
.current-time.manual::before {
@ -370,6 +370,7 @@
/* Layout combining current time and analog clock */
.time-display {
--clock-size: 40vmin;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
@ -379,7 +380,6 @@
.analog-clock-container {
--clock-size: 40vmin;
flex: 0 0 auto;
width: var(--clock-size);
margin-left: auto;
@ -514,7 +514,7 @@ body.fullscreen-clock .clock-label {
}
@media only screen and (max-height: 430px) and (orientation: landscape) {
.analog-clock-container {
.time-display {
--clock-size: 70vmin;
}
}