mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
|
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)
|
||
|
}
|
||
|
`;
|