mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-11 09:11:05 +01:00
16 lines
251 B
TypeScript
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)
|
|
}
|
|
`; |