egroupware_official/api/js/etemplate/Et2Date/DateStyles.ts

16 lines
251 B
TypeScript
Raw Normal View History

2022-01-04 23:38:10 +01:00
/**
* 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)
}
`;