8179-testToMaster #909

Merged
alexm merged 448 commits from 8179-testToMaster into master 2024-11-12 07:01:12 +00:00
1 changed files with 11 additions and 1 deletions
Showing only changes of commit 4344458bb0 - Show all commits

View File

@ -2,5 +2,15 @@
const model = defineModel({ type: [String, Number], required: true });
</script>
<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>
<style lang="scss" scoped>
.q-time {
width: 230px;
min-width: unset;
:deep(.q-time__header) {
min-height: unset;
height: 50px;
}
}
</style>