diff --git a/packages/common/styles.js b/packages/common/styles.js
index 72dc09029bf7ecf144fcda6f3923d7a2d2c8f4b0..cfd72fcbc84df7722516dd777f28d36f48cade2a 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;
+        }
     `;
 }