UNPKG

@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

38 lines 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CONTAINER_STYLES = void 0; const colors_1 = require("../../foundations/colors"); const spacings_1 = require("../../foundations/spacings"); const variants_1 = require("./variants"); const commonContainerProps = { display: 'flex', flex_wrap: 'wrap', width: '100%', padding_top: spacings_1.SPACINGS.spacing_400, padding_bottom: spacings_1.SPACINGS.spacing_400, padding_right: spacings_1.SPACINGS.spacing_700, padding_left: spacings_1.SPACINGS.spacing_700, grid_row_gap: spacings_1.SPACINGS.spacing_400, grid_column_gap: spacings_1.SPACINGS.spacing_500, }; exports.CONTAINER_STYLES = { [variants_1.ContainerVariants.DEFAULT]: { container: { ...commonContainerProps, background_color: colors_1.COLORS.NEUTRAL.color_neutral_bg_200, }, }, [variants_1.ContainerVariants.ALTERNATIVE]: { container: { ...commonContainerProps, background_color: colors_1.COLORS.NEUTRAL.color_neutral_bg_50, }, }, [variants_1.ContainerVariants.SECONDARY]: { container: { ...commonContainerProps, background_color: colors_1.COLORS.SECONDARY.color_secondary_bg_250, }, }, }; //# sourceMappingURL=styles.js.map