shoelace/src/styles/component.styles.ts

18 wiersze
220 B
TypeScript

import { css } from 'lit';
export default css`
:host {
box-sizing: border-box;
}
:host *,
:host *::before,
:host *::after {
box-sizing: inherit;
}
[hidden] {
display: none !important;
}
`;