hydra/src/renderer/src/pages/downloads/downloads.css.ts
2024-06-04 21:52:32 +01:00

15 lines
361 B
TypeScript

import { SPACING_UNIT } from "../../theme.css";
import { style } from "@vanilla-extract/css";
export const downloadsContainer = style({
display: "flex",
padding: `${SPACING_UNIT * 3}px`,
flexDirection: "column",
width: "100%",
});
export const downloadGroups = style({
display: "flex",
gap: `${SPACING_UNIT * 3}px`,
flexDirection: "column",
});