mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 08:43:57 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { SPACING_UNIT } from "../../theme.css";
|
|
import { style } from "@vanilla-extract/css";
|
|
|
|
export const wrapper = style({
|
|
width: "100%",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: `${SPACING_UNIT * 3}px`,
|
|
});
|