@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
22 lines (21 loc) • 514 B
JavaScript
import { css } from 'styled-components';
import { FOCUS_STYLES } from '../foundations/focusStyles';
import { FONT_FAMILY } from '../foundations/typography';
import { FONTS_KUBIT_GLOBAL_STYLES } from './fonts';
export const KUBIT_GLOBAL_STYLES = css `
${FONTS_KUBIT_GLOBAL_STYLES}
html,
body,
* {
font-family: ${FONT_FAMILY.font_family_nunito_sans};
}
*,
*::before,
*::after {
box-sizing: border-box;
}
:focus-visible {
${FOCUS_STYLES}
}
`;
//# sourceMappingURL=globalStyle.js.map