Files
gitops/ts_web/elements/shared/css.ts
2026-02-24 12:29:58 +00:00

30 lines
519 B
TypeScript

import { css } from '@design.estate/dees-element';
export const viewHostCss = css`
:host {
display: block;
width: 100%;
height: 100%;
padding: 24px;
box-sizing: border-box;
color: #fff;
}
.view-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 24px;
}
.view-description {
font-size: 14px;
color: #999;
margin-bottom: 24px;
}
.toolbar {
display: flex;
gap: 16px;
align-items: center;
margin-bottom: 24px;
flex-wrap: wrap;
}
`;