mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
518 B
33 lines
518 B
@import 'apps/client/src/styles/ghostfolio-style';
|
|
|
|
:host {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
|
|
.date {
|
|
font-feature-settings: 'tnum';
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.day {
|
|
height: 0.5rem;
|
|
margin-right: 0.25rem;
|
|
width: 0.5rem;
|
|
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&.valid {
|
|
background-color: var(--danger);
|
|
}
|
|
|
|
&.available {
|
|
background-color: var(--success);
|
|
}
|
|
|
|
&.today {
|
|
background-color: rgba(var(--palette-accent-500), 1);
|
|
}
|
|
}
|
|
}
|
|
|