diff --git a/frontend/static/css/general.css b/frontend/static/css/general.css index 90f08dd..2aaa5ef 100644 --- a/frontend/static/css/general.css +++ b/frontend/static/css/general.css @@ -271,6 +271,10 @@ nav > div > button svg { margin-bottom: 2rem; } +.window-container > div:not(#home) > h2:not(:first-of-type) { + margin-top: 1.5rem; +} + .window-container > div:not(#home) > p { text-align: center; } diff --git a/frontend/static/css/settings.css b/frontend/static/css/settings.css index a348eb1..de69400 100644 --- a/frontend/static/css/settings.css +++ b/frontend/static/css/settings.css @@ -40,3 +40,29 @@ #delete-account-button { background-color: var(--color-error); } + +.contact-list { + width: min(100%, 31rem); + margin: auto; + + display: flex; + justify-content: center; + gap: 1rem; + flex-wrap: wrap; +} + +.contact-list > a { + height: 5rem; + width: 15rem; + + display: flex; + justify-content: center; + align-items: center; + + border-radius: 6px; + background-color: var(--color-gray); + color: var(--color-light); + + text-decoration: none; + font-size: 1.2rem; +} \ No newline at end of file diff --git a/frontend/templates/reminders.html b/frontend/templates/reminders.html index 964c89a..75f614b 100644 --- a/frontend/templates/reminders.html +++ b/frontend/templates/reminders.html @@ -270,6 +270,13 @@