diff --git a/frontend/static/css/general.css b/frontend/static/css/general.css index 44ae030..38eb314 100644 --- a/frontend/static/css/general.css +++ b/frontend/static/css/general.css @@ -134,6 +134,16 @@ h1 { font-size: clamp(1.3rem, 7vw, 2rem); } +noscript { + width: 90%; + margin-inline: 1rem; + + border-radius: 4px; + padding: 1rem; + background-color: var(--color-error); + color: var(--color-light); +} + .nav-divider { position: relative; height: calc(100% - var(--header-height)); diff --git a/frontend/static/css/reminders.css b/frontend/static/css/reminders.css index c1a43cc..0910036 100644 --- a/frontend/static/css/reminders.css +++ b/frontend/static/css/reminders.css @@ -4,8 +4,10 @@ margin: auto; display: flex; + flex-direction: column; justify-content: center; align-items: center; + gap: 1rem; padding-block: clamp(1rem, 4vw, 2rem); } diff --git a/frontend/templates/login.html b/frontend/templates/login.html index 155c475..610ace6 100644 --- a/frontend/templates/login.html +++ b/frontend/templates/login.html @@ -19,6 +19,7 @@