@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
30 lines (28 loc) • 806 B
JavaScript
/**
* @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 } from '@vaadin/vaadin-themable-mixin/register-styles';
export const shadows = css`
/* === Box shadows === */
.shadow-xs {
box-shadow: var(--leds-box-shadow-xs);
}
.shadow-s {
box-shadow: var(--leds-box-shadow-s);
}
.shadow-m {
box-shadow: var(--leds-box-shadow-m);
}
.shadow-l {
box-shadow: var(--leds-box-shadow-l);
}
.shadow-xl {
box-shadow: var(--leds-box-shadow-xl);
}
`;