@k-link/notifications
Version:
Notification system based on Klink UI components
19 lines (16 loc) • 420 B
JavaScript
import { createStyles } from '@k-link/core';
var useStyles = createStyles((theme, { zIndex }) => ({
notifications: {
width: `calc(100% - ${theme.spacing.md} * 2)`,
boxSizing: "border-box",
position: "fixed",
zIndex
},
notification: {
"&:not(:first-of-type)": {
marginTop: theme.spacing.sm
}
}
}));
export { useStyles as default };
//# sourceMappingURL=Notifications.styles.js.map