From c9a035ed59b2156a73ef7f23c28ae5de69b91424 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Sun, 15 Jan 2023 16:49:08 +0100 Subject: [PATCH] Create databases and collections --- frontend/src/app.svelte | 81 ++++++++++++++++++++-- frontend/src/components/contextmenu.svelte | 4 +- frontend/src/components/modal.svelte | 22 +++--- frontend/src/style.css | 3 + 4 files changed, 91 insertions(+), 19 deletions(-) diff --git a/frontend/src/app.svelte b/frontend/src/app.svelte index 12651ce..24e6fbc 100644 --- a/frontend/src/app.svelte +++ b/frontend/src/app.svelte @@ -1,24 +1,38 @@ @@ -54,6 +54,8 @@ button { padding: 5px; border-radius: 5px; + width: 100%; + text-align: left; } button:hover { background-color: #00008b; diff --git a/frontend/src/components/modal.svelte b/frontend/src/components/modal.svelte index 36e21a5..c4ac640 100644 --- a/frontend/src/components/modal.svelte +++ b/frontend/src/components/modal.svelte @@ -18,19 +18,19 @@ {#if show} diff --git a/frontend/src/style.css b/frontend/src/style.css index bdff077..00df9e6 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -26,6 +26,9 @@ body { p { margin: 0 0 0.7rem 0; } +p strong { + font-weight: 700; +} .loading { cursor: wait;