fix(anchors): improve "clickability" of links
+ 9
- 1
app/components/Layout.tsx
@@ -45,7 +45,15 @@ export const Layout: FC<LayoutProps & WithThemeSchemeProp> = (commonProps) => {
               overflow-x: hidden;
               overflow-y: scroll;
             }
-            * { box-sizing: border-box; }
+            * {
+              box-sizing: border-box;
+            }
+            a {
+              color: ${NamedColors.TEXT_LINK[themeScheme]};
+            }
+            a:active {
+              opacity: 0.87;
+            }
             a > * {
               pointer-events: none;
             }