From a4b17e53634394862fb5f61fda5cd248c75caa1d Mon Sep 17 00:00:00 2001 From: Swrup Date: Tue, 22 Apr 2025 17:23:57 +0200 Subject: [PATCH] css: style new-thread map btn --- src/assets/css/style.css | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 6a1c60e..02d88f7 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -121,13 +121,33 @@ nav a:hover, nav button:hover, .map-btn-div { display: flex; + gap: 2vw; position: absolute; bottom: 0; margin-bottom: 7vh; justify-content: flex-end; right: 0; margin-right: 7vw; + height: 5vh; z-index: 2; + + a { + all: unset; + cursor: pointer; + user-select: none; + display: flex; + align-items: center; + padding-inline: 1vw; + border-radius: 1vw; + background-color: white; + opacity: 0.75; + color: var(--heavy-text); + transition: all 0.3s ease; + + &:hover, &:focus { + opacity: 1; + } + } } .form-box { @@ -462,9 +482,9 @@ nav a:hover, nav button:hover, } .hidden { - visibility: hidden; + visibility: hidden !important; } .off { - display: none; + display: none !important; }