UNPKG

@hitachivantara/uikit-react-lab

Version:

Contributed React components to UI Kit by the community.

36 lines (35 loc) 884 B
import { createClasses } from "@hitachivantara/uikit-react-core"; import { theme as theme$1 } from "@hitachivantara/uikit-styles"; //#region src/Wizard/WizardContent/WizardContent.styles.tsx var { staticClasses, useClasses } = createClasses("HvWizardContent", { contentContainer: { position: "relative", padding: 20, marginLeft: 0, minHeight: 400, overflowX: "hidden" }, fixedHeight: { minHeight: "calc(100vh - 387px)" }, summaryRef: { flex: 1, overflowY: "auto", overflowX: "hidden" }, summarySticky: { position: "sticky", top: 0, zIndex: 1 }, summaryContainer: { position: "absolute", top: 0, minWidth: 280, boxShadow: theme$1.colors.shadow, backgroundColor: theme$1.colors.bgContainer, transition: "transform 0.3s", transitionTimingFunction: "ease-in-out", overflowY: "scroll" } }); //#endregion export { staticClasses, useClasses };