Theming for date picker

This commit is contained in:
Daniel Egger 2024-07-02 16:12:38 +02:00
parent d0b357c33c
commit a53459f8bf
1 changed files with 16 additions and 0 deletions

View File

@ -250,3 +250,19 @@ const address = computed({
</div>
</div>
</template>
<style>
/* Theming for date picker */
.dp__theme_light {
--dp-text-color: #585f63;
--dp-primary-color: #41b5fa;
--dp-border-color-focus: #3d6dcc;
}
:root {
--dp-font-family: "Buenos Aires" sans-serif;
--dp-border-radius: none;
--dp-font-size: 0.875rem;
--dp-cell-border-radius: none;
}
</style>