mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { style } from "@vanilla-extract/css";
|
|
|
|
export const link = style({
|
|
textDecoration: "none",
|
|
color: "#C0C1C7",
|
|
":hover": {
|
|
textDecoration: "underline",
|
|
},
|
|
});
|