From c5abb4740368b33f2be51fc0ee7fe6c87906c6d6 Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Thu, 31 Oct 2024 18:45:44 +0100 Subject: [PATCH] navbar.css: prevent overlapping of elements (#2140) go-pro-link is overlapping the settings button --- src/main/resources/static/css/navbar.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/resources/static/css/navbar.css b/src/main/resources/static/css/navbar.css index 659940b9..23fe0e27 100644 --- a/src/main/resources/static/css/navbar.css +++ b/src/main/resources/static/css/navbar.css @@ -329,11 +329,14 @@ span.icon-text::after { } } - .go-pro-link { +.go-pro-link { position: relative; padding: 0.5rem 1rem; transition: all 0.3s ease; - } + z-index: 1; + display: inline-block; + width: auto; +} .go-pro-badge { display: inline-block; @@ -350,4 +353,4 @@ span.icon-text::after { .go-pro-link:hover .go-pro-badge { background-color: #0056b3; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); -} \ No newline at end of file +}