diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 8bc3d1c..20fcfb9 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -30,17 +30,13 @@
- Welcome to SEDS Celestia - -
+ class="welc p-20 po-abs flex jtx-ct" + style="height:calc(100% - 40px); width:calc(100% - 40px);"> + Welcome to SEDS Celestia
-
+
@@ -146,4 +141,29 @@ height: 32px; } } + .btn-container { + display: flex; + flex-direction: row; // Default to horizontal layout + justify-content: space-around; + flex-wrap: wrap; + margin: 20px auto; + } + + .btn-std { + margin: 10px; + padding: 10px 20px; + font-size: 1em; + } + + @media (max-width: 768px) { + .btn-container { + flex-direction: column; // Stack buttons vertically on small screens + justify-content: center; + align-items: center; + } + + .btn-std { + margin: 5px 0; // Adjust vertical spacing without changing size + } + }