shoelace/src/styles/component.styles.ts

19 wiersze
240 B
TypeScript
Czysty Zwykły widok Historia

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