hydra/src/renderer/src/components/link/link.css.ts
2024-05-12 10:56:31 +01:00

9 lines
177 B
TypeScript

import { style } from "@vanilla-extract/css";
export const link = style({
textDecoration: "none",
color: "#C0C1C7",
":hover": {
textDecoration: "underline",
},
});