mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-12 08:19:26 +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)
|
|
}
|
|
`; |