mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { style } from "@vanilla-extract/css";
|
|
|
|
import { SPACING_UNIT } from "../../theme.css";
|
|
|
|
export const deleteActionsButtonsCtn = style({
|
|
display: "flex",
|
|
width: "100%",
|
|
justifyContent: "end",
|
|
alignItems: "center",
|
|
gap: `${SPACING_UNIT}px`,
|
|
});
|