shoelace/src/styles/component.styles.ts

18 wiersze
220 B
TypeScript

2021-07-10 00:45:44 +00:00
import { css } from 'lit';
export default css`
:host {
box-sizing: border-box;
2021-07-13 11:12:24 +00:00
}
2021-07-10 00:45:44 +00:00
2021-07-13 11:12:24 +00:00
:host *,
:host *::before,
:host *::after {
box-sizing: inherit;
2021-07-10 00:45:44 +00:00
}
[hidden] {
display: none !important;
}
`;