0
0
Fork 0

feat: refs #8019 fine-tunning vnTime

This commit is contained in:
Jorge Penadés 2024-10-07 16:02:29 +02:00
parent c815066953
commit 4344458bb0
1 changed files with 11 additions and 1 deletions

View File

@ -2,5 +2,15 @@
const model = defineModel({ type: [String, Number], required: true }); const model = defineModel({ type: [String, Number], required: true });
</script> </script>
<template> <template>
<QTime v-model="model" :landscape="$q.screen.gt.xs" now-btn mask="HH:mm" /> <QTime v-model="model" now-btn mask="HH:mm" />
</template> </template>
<style lang="scss" scoped>
.q-time {
width: 230px;
min-width: unset;
:deep(.q-time__header) {
min-height: unset;
height: 50px;
}
}
</style>