From 001978ce621c8c303992ff74e166c7f6b5b75edd Mon Sep 17 00:00:00 2001 From: Sangelo Date: Fri, 16 Feb 2024 09:55:27 +0100 Subject: [PATCH] Change end-text to be a flexbox --- src/routes/modals/more.svelte | 6 +++--- src/styles/modal-more.scss | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/routes/modals/more.svelte b/src/routes/modals/more.svelte index 19dc32f..59c9457 100644 --- a/src/routes/modals/more.svelte +++ b/src/routes/modals/more.svelte @@ -123,10 +123,10 @@ -

-
+

+ You've reached the end! There might be more projects coming soon 🤔... -

+
diff --git a/src/styles/modal-more.scss b/src/styles/modal-more.scss index 2a89ce5..b5c522f 100644 --- a/src/styles/modal-more.scss +++ b/src/styles/modal-more.scss @@ -125,7 +125,10 @@ } .end-text { + display: flex; + flex-direction: column; + align-items: center; + gap: 0.5em; margin: 4% auto 0 auto; color: $star-gray; - text-align: center; }