@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.85 kB
JavaScript
import { SPACINGS } from '../../../../../designSystem/kubitWireframe/commons/foundations/spacings';
import { DeviceBreakpointsType } from '../../../../../types/breakpoints/breakpoints';
import { LayoutVariantType } from './variants';
export const LAYOUT_STYLES = {
[]: {
gridConfig: {
[]: {
gap: SPACINGS.spacing_450,
margin: 7.5,
columns: 12,
},
[]: {
gap: SPACINGS.spacing_450,
margin: 7.5,
columns: 12,
},
[]: {
gap: SPACINGS.spacing_400,
margin: 1.5,
columns: 8,
},
[]: {
gap: SPACINGS.spacing_50,
margin: 1,
columns: 4,
},
},
defaultColumnsConfig: {
header: {
[]: 12,
[]: 12,
[]: 8,
[]: 4,
},
main: {
[]: 9,
[]: 9,
DESKTOP_FULL: 12,
[]: 8,
[]: 4,
},
aside: {
[]: 3,
[]: 3,
[]: 8,
[]: 4,
},
},
},
};
//# sourceMappingURL=styles.js.map