Skip to content

Commit

Permalink
chore: change footer links hover state color to match the other links…
Browse files Browse the repository at this point in the history
…' color (#2042)
  • Loading branch information
gabriele-ct authored Jul 29, 2024
1 parent 711806e commit fa24f10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/heavy-dodos-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@commercetools-docs/gatsby-theme-docs': patch
---

change footer links hover color to match other links' color
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { css } from '@emotion/react';
import { designSystem } from '@commercetools-docs/ui-kit';
import Link from './link';
Expand All @@ -13,10 +12,10 @@ const linkStyles = css`
}
:hover {
color: ${designSystem.colors.light.linkNavigation} !important;
color: ${designSystem.colors.light.linkHover} !important;
svg {
fill: ${designSystem.colors.light.linkNavigation} !important;
fill: ${designSystem.colors.light.linkHover} !important;
}
}
`;
Expand Down

0 comments on commit fa24f10

Please sign in to comment.