domsPlace/src/styles/anchor.tsx

10 lines
231 B
TypeScript

import { Colors } from "@settings/all";
import { css } from "styled-components";
export const AnchorStyles = css`
a {
text-decoration: inherit;
color: ${Colors.primary};
&:hover { text-decoration: underline; }
}
`;