diff --git a/frontend/src/organisms/connection/index.svelte b/frontend/src/organisms/connection/index.svelte index 752ce8a..7f730ce 100644 --- a/frontend/src/organisms/connection/index.svelte +++ b/frontend/src/organisms/connection/index.svelte @@ -74,8 +74,9 @@ -
+
+
@@ -89,9 +90,17 @@ -+
+
{/if} + + diff --git a/frontend/src/style.css b/frontend/src/style.css index 203986b..fa16703 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -105,6 +105,7 @@ p strong { .btn { background-color: #00008b; + border: 1px solid #00008b; padding: 0.5rem; border-radius: 10px; color: #fff; @@ -119,6 +120,17 @@ p strong { .btn.danger:focus { box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2); } +.btn.secondary { + border: 1px solid #ccc; + background-color: #fff; + color: inherit; +} +.btn.secondary:hover { + background-color: #eee; +} +.btn.secondary:active { + background-color: #ddd; +} .btn:disabled { opacity: 0.5; cursor: not-allowed;