@hitachivantara/uikit-uno-preset
Version:
UI Kit UnoCSS preset with the NEXT theme.
12 lines (11 loc) • 331 B
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
const rules = [
["bg-default", { "background-color": theme.colors.bgPage }],
// fix for `gap-xxs` being parsed as `gap-x-xs`
["gap-xxs", { gap: theme.space.xxs }],
["m-xxs", { margin: theme.space.xxs }],
["p-xxs", { padding: theme.space.xxs }]
];
export {
rules
};