@hitachivantara/uikit-react-core
Version:
UI Kit Core React components.
53 lines (52 loc) • 1.15 kB
JavaScript
import { theme } from "@hitachivantara/uikit-styles";
import { createClasses } from "@hitachivantara/uikit-react-utils";
//#region src/AppSwitcher/AppSwitcher.styles.tsx
var { staticClasses, useClasses } = createClasses("HvAppSwitcher", {
root: {
display: "flex",
flexDirection: "column",
overflow: "hidden"
},
item: {},
itemSelected: {},
itemDisabled: {},
itemTrigger: {},
itemIcon: {},
itemTitle: {},
itemInfoIcon: {},
actionsContainer: {
display: "flex",
flexWrap: "wrap",
justifyContent: "flex-start",
overflowY: "auto",
gap: theme.space.xs,
padding: 4,
margin: -4
},
footerContainer: {
display: "flex",
alignItems: "center",
marginTop: "auto",
height: 52,
paddingTop: theme.space.sm
},
open: {
zIndex: theme.zIndices.overlay,
position: "absolute",
top: "50px",
overflowX: "hidden",
boxShadow: theme.colors.shadow
},
closed: { display: "none" },
title: {
minHeight: 36,
paddingBottom: theme.space.sm,
...theme.typography.label
},
titleAnchor: { WebkitLineClamp: 2 },
single: { width: 320 },
dual: { width: 600 },
fluid: {}
});
//#endregion
export { staticClasses, useClasses };