@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
51 lines • 1.93 kB
JavaScript
import { DeviceBreakpointsType } from '../../../../types/breakpoints/breakpoints';
import { COLORS } from '../../foundations/colors';
import { SPACINGS } from '../../foundations/spacings';
import { OperativeLayoutVariantType } from './variants';
export const OPERATIVE_LAYOUT_STYLES = {
[]: {
gridConfig: {
[]: {
gap: SPACINGS.spacing_0,
margin: 0,
columns: 12,
},
[]: {
gap: SPACINGS.spacing_0,
margin: 0,
columns: 12,
},
[]: {
gap: SPACINGS.spacing_100,
margin: 0,
columns: 8,
},
[]: {
gap: SPACINGS.spacing_50,
margin: 0,
columns: 4,
},
},
defaultColumnsConfig: {
main: {
[]: 9,
[]: 9,
DESKTOP_FULL: 12,
[]: 8,
[]: 4,
},
aside: {
[]: 3,
[]: 3,
[]: 8,
[]: 4,
},
},
paddingRightGridItem: SPACINGS.spacing_100,
paddingLeftGridItem: SPACINGS.spacing_100,
mainContainerColor: COLORS.NEUTRAL.color_neutral_bg_100,
asideContainerColor: COLORS.NEUTRAL.color_neutral_bg_100,
maxWidthParentContainer: { [DeviceBreakpointsType.DESKTOP]: '90rem' },
},
};
//# sourceMappingURL=styles.js.map