fix(reminders): style flatpickr so that it blends in more
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2023-06-10 18:39:33 +02:00
parent 2677f6254d
commit 9a736cf65f
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 1 deletions

View File

@ -240,7 +240,7 @@ function translateUnit(amount: number, unit: PeriodUnit): string {
}
.reminder-options-popup {
width: 300px;
width: 310px;
z-index: 99;
@media screen and (max-width: ($tablet)) {
@ -267,4 +267,9 @@ function translateUnit(amount: number, unit: PeriodUnit): string {
.currently-active {
color: var(--primary);
}
:deep(.flatpickr-calendar) {
margin: 0 auto;
box-shadow: none;
}
</style>