diff --git a/components/Header.tsx b/components/Header.tsx index e4f27fc96..065815350 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -29,14 +29,14 @@ const Header = () => {
-
+
{headerNavLinks .filter((link) => link.href !== '/') .map((link) => ( {link.title} diff --git a/tailwind.config.js b/tailwind.config.js index 3c1420981..d98ecacf2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -72,5 +72,20 @@ module.exports = { }), }, }, - plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')], + plugins: [ + require('@tailwindcss/forms'), + require('@tailwindcss/typography'), + ({ addBase, theme }) => { + addBase({ + 'a, button': { + outlineColor: theme('colors.primary.500'), + '&:focus-visible': { + outline: '2px solid', + borderRadius: theme('borderRadius.DEFAULT'), + outlineColor: theme('colors.primary.500'), + }, + }, + }) + }, + ], }