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

43 lines 1.47 kB
import { DeviceBreakpointsType } from '../../../../types/breakpoints/breakpoints'; import { RADIUS } from '../../foundations/borders'; import { SPACINGS } from '../../foundations/spacings'; import { HeaderVariantType } from './variants'; export const HEADER_STYLES = { [HeaderVariantType.DEFAULT]: { container: { border_radius: RADIUS.radius_00, }, breadcrumbs: { margin_top: SPACINGS.spacing_200, }, content: { gap: SPACINGS.spacing_200, margin: `${SPACINGS.spacing_50} ${SPACINGS.spacing_0} ${SPACINGS.spacing_250} ${SPACINGS.spacing_0}`, }, leftContent: { gap: SPACINGS.spacing_50, border_radius: RADIUS.radius_00, [DeviceBreakpointsType.MOBILE]: { width: '100%', max_width: '100%', gap: SPACINGS.spacing_150, }, [DeviceBreakpointsType.TABLET]: { width: '100%', max_width: '100%', gap: SPACINGS.spacing_150, }, }, rightContent: { gap: SPACINGS.spacing_50, border_radius: RADIUS.radius_00, [DeviceBreakpointsType.MOBILE]: { gap: SPACINGS.spacing_150, }, [DeviceBreakpointsType.TABLET]: { gap: SPACINGS.spacing_150, }, }, }, }; //# sourceMappingURL=styles.js.map