@hitachivantara/uikit-react-core
Version:
Core React components for the NEXT Design System.
24 lines (23 loc) • 547 B
JavaScript
import { createClasses } from "@hitachivantara/uikit-react-utils";
import { theme } from "@hitachivantara/uikit-styles";
const { staticClasses, useClasses } = createClasses("HvLogin", {
root: {
backgroundRepeat: "no-repeat",
backgroundPosition: "bottom",
backgroundSize: "cover",
width: "100%",
height: "100%",
padding: 0,
margin: "-1px 0 0 0"
},
formContainer: {
background: theme.colors.bgPage,
marginLeft: "auto",
maxWidth: 500,
height: "100%"
}
});
export {
staticClasses,
useClasses
};