fix: added missing link variable to Tailwind theme

pull/176/head^2
tycrek 1 year ago
parent e6b1e72ef7
commit 093f84b6fb
No known key found for this signature in database
GPG Key ID: FF8A54DCE404885A

@ -53,6 +53,7 @@ module.exports = {
colors: { colors: {
'primary': theme.txtPrimary || defaults.txtPrimary, 'primary': theme.txtPrimary || defaults.txtPrimary,
'secondary': theme.txtSecondary || defaults.txtSecondary, 'secondary': theme.txtSecondary || defaults.txtSecondary,
'link-primary': theme.linkPrimary || defaults.linkPrimary,
'link-hover': theme.linkHover || defaults.linkHover, 'link-hover': theme.linkHover || defaults.linkHover,
'link-active': theme.linkActive || defaults.linkActive, 'link-active': theme.linkActive || defaults.linkActive,
}, },

@ -13,7 +13,7 @@
@apply no-underline hover_no-underline active_no-underline visited_no-underline @apply no-underline hover_no-underline active_no-underline visited_no-underline
/* regular, visited */ /* regular, visited */
text-link visited_text-link text-link-primary visited_text-link-primary
border-b-2 visited_border-b-2 border-b-2 visited_border-b-2
border-transparent visited_border-transparent border-transparent visited_border-transparent
rounded-sm visited_rounded-sm rounded-sm visited_rounded-sm

Loading…
Cancel
Save