mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
15 lines
361 B
TypeScript
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",
|
|
});
|