egroupware_official/api/js/etemplate/Et2Date/DateStyles.ts
2022-01-04 15:38:10 -07:00

16 lines
251 B
TypeScript

/**
* Sharable date styles constant
*/
import {css} from "@lion/core";
export const dateStyles = css`
:host {
display: inline-block;
white-space: nowrap;
min-width: 20ex;
}
.overdue {
color: red; // var(--whatever the theme color)
}
`;