We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77c48b5 commit 1e45527Copy full SHA for 1e45527
web/styles.css
@@ -84,13 +84,13 @@ main {
84
font-size: 5dvw;
85
font-family: "Arial", sans-serif;
86
text-align: center;
87
- margin: 5px auto 0 auto;
88
- width: fit-content;
+ margin: 0; /* you can remove margin auto now */
89
}
90
91
.panel {
92
flex: 1;
93
display: flex;
94
- justify-content: center;
95
- align-items: center;
+ justify-content: center; /* horizontal center */
+ align-items: flex-start; /* align to top */
+ padding-top: 5px; /* optional: some spacing from top */
96
0 commit comments