Files
registry/ts_web/elements/shared/css.ts

13 lines
225 B
TypeScript

import { css } from '@design.estate/dees-element';
export const viewHostCss = css`
:host {
display: block;
width: 100%;
height: 100%;
overflow-y: auto;
padding: 24px;
box-sizing: border-box;
}
`;