From fe014517bcea6859f4c6fe83bc2b3c3af3c02373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jana=20Vlachov=C3=A1?= <65499282+janavlachova@users.noreply.github.com> Date: Sat, 2 Nov 2024 11:13:39 +0100 Subject: [PATCH] [web] remove underline from links #1342 (#1343) web - remove underline from links --- agdb_web/styles/global.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/agdb_web/styles/global.scss b/agdb_web/styles/global.scss index 7e8ba9ba9..2561a19e9 100644 --- a/agdb_web/styles/global.scss +++ b/agdb_web/styles/global.scss @@ -41,3 +41,10 @@ body { margin: 1rem 0; flex-wrap: wrap; } + +.nx-underline { + text-decoration: none; + &:hover { + text-decoration: underline; + } +}