From 200dee6b3495196d980d5a26e78b30fc7dd2550c Mon Sep 17 00:00:00 2001
From: Tamara Steinwender <tamara.steinwender@tugraz.at>
Date: Wed, 15 Sep 2021 12:31:31 +0200
Subject: [PATCH] Add internal link styles to common Link css

---
 packages/common/styles.js | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/packages/common/styles.js b/packages/common/styles.js
index 72dc0902..cfd72fcb 100644
--- a/packages/common/styles.js
+++ b/packages/common/styles.js
@@ -1069,6 +1069,17 @@ export function getLinkCss() {
             animation: 0s linkIconIn;
             font-size: 103%;
         }
+
+        .int-link-internal{
+            transition: background-color 0.15s, color 0.15s;
+            border-bottom: 1px solid rgba(0,0,0,0.3);
+        }
+
+        .int-link-internal:hover{
+            background-color: black;
+            color: white;
+            text-decoration: underline;
+        }
     `;
 }
 
-- 
GitLab