From b039db85171c0d0ff6eefbf102350f5878f4ae92 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sat, 19 Oct 2024 22:14:06 +0100 Subject: [PATCH] class for spans acting as links (or buttons) --- apps/home/static/home/scss/index.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/home/static/home/scss/index.scss b/apps/home/static/home/scss/index.scss index 7dbce44..21bda61 100644 --- a/apps/home/static/home/scss/index.scss +++ b/apps/home/static/home/scss/index.scss @@ -25,3 +25,12 @@ #serverTabs .nav-item .nav-link:not(.active) { color: var(--bs-text-body); } + +.act-as-link { + + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); + text-decoration: none; + + &:hover { --bs-link-color-rgb: var(--bs-link-hover-color-rgb); } + +}