aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/constants
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/constants')
-rw-r--r--packages/website/ts/@next/constants/globalStyle.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/website/ts/@next/constants/globalStyle.tsx b/packages/website/ts/@next/constants/globalStyle.tsx
index 38077c78c..f30f8e2b1 100644
--- a/packages/website/ts/@next/constants/globalStyle.tsx
+++ b/packages/website/ts/@next/constants/globalStyle.tsx
@@ -5,6 +5,7 @@ interface GlobalStyle {
theme: {
bgColor: string;
textColor: string;
+ linkColor: string;
};
}
@@ -82,6 +83,10 @@ const GlobalStyles = withTheme(createGlobalStyle<GlobalStyle> `
overflow: hidden;
}
+ a {
+ color: ${props => props.theme.linkColor};
+ }
+
img, svg {
max-width: 100%;
object-fit: contain;