UNPKG

@logo-elements/logo-elements-styles

Version:

Logo Elements Design System is a design system library for modern web applications which gives your web apps Logo Applications look and feel, used by Logo Elements

36 lines (32 loc) 1.17 kB
/** * @license * Copyright LOGO YAZILIM SANAYİ VE TİCARET A.Ş. * * Save to the extent permitted by law, you may not use, copy, modify, * distribute or create derivative works of this material or any part * of it without the prior written consent of LOGO YAZILIM SANAYİ VE TİCARET A.Ş. Limited. * Any reproduction of this material must contain this notice. */ import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/register-styles'; import { accessibility } from './utilities/accessibility.js'; import { background } from './utilities/background.js'; import { border } from './utilities/border.js'; import { shadows } from './utilities/shadows.js'; import { flexboxAndGrid } from './utilities/flexbox-grid.js'; import { layout } from './utilities/layout.js'; import { sizing } from './utilities/sizing.js'; import { spacing } from './utilities/spacing.js'; import { typography } from './utilities/typography.js'; /* prettier-ignore */ export const utility = css` ${accessibility} ${background} ${border} ${shadows} ${flexboxAndGrid} ${layout} ${sizing} ${spacing} ${typography} `; registerStyles('', utility, { moduleId: 'leds-utility' });