fix host styles on components

This commit is contained in:
Cory LaViska
2024-07-08 10:39:43 -04:00
parent 236ecd0240
commit 33eccfc5f8

View File

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