@vaadin/vaadin-lumo-styles
Version:
Lumo is a design system foundation for modern web applications, used by Vaadin components
29 lines (27 loc) • 643 B
JavaScript
/**
* @license
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
export const shadows = css`
/* === Box shadow === */
.shadow-none {
box-shadow: none;
}
.shadow-xs {
box-shadow: var(--lumo-box-shadow-xs);
}
.shadow-s {
box-shadow: var(--lumo-box-shadow-s);
}
.shadow-m {
box-shadow: var(--lumo-box-shadow-m);
}
.shadow-l {
box-shadow: var(--lumo-box-shadow-l);
}
.shadow-xl {
box-shadow: var(--lumo-box-shadow-xl);
}
`;