mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-27 04:41:03 +00:00
20 lines
418 B
TypeScript
20 lines
418 B
TypeScript
import { style } from "@vanilla-extract/css";
|
|
import { SPACING_UNIT, vars } from "@renderer/theme.css";
|
|
|
|
export const container = style({
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: `${SPACING_UNIT * 2}px`,
|
|
width: "100%",
|
|
});
|
|
|
|
export const downloadsPathField = style({
|
|
display: "flex",
|
|
gap: `${SPACING_UNIT * 2}px`,
|
|
});
|
|
|
|
export const hintText = style({
|
|
fontSize: 12,
|
|
color: vars.color.bodyText,
|
|
});
|