Place the whole app to the center

This commit is contained in:
dvirlabs 2025-12-05 05:03:58 +02:00
parent 243b63309c
commit 346fb57e39

View File

@ -26,6 +26,12 @@ body {
color: var(--text-main);
}
/* Center the app horizontally (keeps top alignment) */
body {
display: flex;
justify-content: center;
align-items: flex-start;
}
.app-root {
min-height: 100vh;
max-width: 1200px;