feat(layout): improve clickability of links
+ 6
- 0
app/components/Layout.tsx
@@ -50,6 +50,12 @@ export const Layout: FC<LayoutProps & WithThemeSchemeProp> = (commonProps) => {
             }
             a {
               color: ${NamedColors.TEXT_LINK[themeScheme]};
+              font-weight: bold;
+              text-decoration: none;
+              transition: opacity 220ms linear 0s;
+            }
+            a:hover {
+              text-decoration: underline;
             }
             a:active {
               opacity: 0.87;