#8019 make responsive inputs #812

Merged
jorgep merged 8 commits from 8019-makeResponsiveInputs into dev 2024-10-14 08:50:21 +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;
Review

→ Que cada input tengo un tamaño diferente no lo veo

→ Que cada input tengo un tamaño diferente no lo veo
min-width: unset;
:deep(.q-time__header) {
min-height: unset;
height: 50px;
}
}
</style>