Ensure analog page width

This commit is contained in:
Kiyomichi Kosaka 2025-06-14 23:36:02 +02:00
parent a7d623f5ff
commit 1fcd399de3
2 changed files with 11 additions and 3 deletions

View File

@ -18,6 +18,7 @@
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
#clock {
position: relative;

View File

@ -68,6 +68,11 @@
text-align: center;
position: relative;
overflow: hidden;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
height: 40vmin;
}
.current-time.manual::before {
@ -366,13 +371,15 @@
.time-display {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
justify-content: flex-start;
align-items: stretch;
gap: 20px;
}
.analog-clock-container {
flex: 0 0 300px;
flex: 0 0 auto;
width: 40vmin;
margin-left: auto;
display: flex;
justify-content: center;
align-items: center;