@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
39 lines • 1.3 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HEADER_STRUCTURE_STYLES = void 0;
const breakpoints_1 = require("../../../../types/breakpoints/breakpoints");
const borders_1 = require("../../foundations/borders");
const spacings_1 = require("../../foundations/spacings");
const variants_1 = require("./variants");
const leftCenterRightContentCommonProps = {
gap: spacings_1.SPACINGS.spacing_50,
[breakpoints_1.DeviceBreakpointsType.MOBILE]: {
gap: spacings_1.SPACINGS.spacing_150,
},
[breakpoints_1.DeviceBreakpointsType.TABLET]: {
gap: spacings_1.SPACINGS.spacing_150,
},
};
exports.HEADER_STRUCTURE_STYLES = {
[variants_1.HeaderStructureVariantType.DEFAULT]: {
container: {
border_radius: borders_1.RADIUS.radius_00,
},
breadcrumbs: {
margin_bottom: spacings_1.SPACINGS.spacing_150,
},
content: {
gap: spacings_1.SPACINGS.spacing_250,
},
leftContent: {
...leftCenterRightContentCommonProps,
},
centerContent: {
...leftCenterRightContentCommonProps,
},
rightContent: {
...leftCenterRightContentCommonProps,
},
},
};
//# sourceMappingURL=styles.js.map