feat(layout): improve clickability of links@@ -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;