diff --git a/src/web/components/layout/globalstyles.jsx b/src/web/components/layout/globalstyles.jsx index 93999990d8..198dc1fdc3 100644 --- a/src/web/components/layout/globalstyles.jsx +++ b/src/web/components/layout/globalstyles.jsx @@ -28,6 +28,10 @@ const GlobalStyles = createGlobalStyle` text-decoration: none; } + a:visited { + color: revert; + } + a:hover, a:focus { color: blue; text-decoration: underline; diff --git a/src/web/utils/theme.jsx b/src/web/utils/theme.jsx index a03c73b7a6..2f4eede5fd 100644 --- a/src/web/utils/theme.jsx +++ b/src/web/utils/theme.jsx @@ -3,7 +3,6 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ - const Theme = { /* source styleguide */ lightGreen: '#A1DDBA', @@ -61,7 +60,7 @@ const Theme = { Font: { default: 'Verdana, sans-serif', dialog: 'Trebuchet MS, Tahoma, Verdana, Arial, sans-serif', - defaultSize: '12px', + defaultSize: 'var(--mantine-font-size-md)', }, };