|
17 | 17 | > |
18 | 18 | </div> |
19 | 19 | <div class="col-span-24 grid grid-cols-subgrid"> |
20 | | - <div class="col-span-16 text-h5"> |
| 20 | + <div class="col-span-18 text-h6"> |
21 | 21 | {{ |
22 | 22 | truncate(`${modelValue.name} ${modelValue.customer?.lastName}`, 12) |
23 | 23 | }} |
|
27 | 27 | :filled="false" |
28 | 28 | stack-label |
29 | 29 | dense |
30 | | - class="col-span-8" |
| 30 | + class="col-span-6" |
31 | 31 | > |
32 | 32 | <template #control> |
33 | 33 | <div |
|
42 | 42 | <q-field |
43 | 43 | :label="lang.pet.fields.breed" |
44 | 44 | :filled="false" |
45 | | - class="col-span-17" |
| 45 | + class="col-span-13" |
46 | 46 | stack-label |
| 47 | + dense |
47 | 48 | > |
48 | 49 | <template #control> |
49 | 50 | <div |
50 | | - class="self-center text text-h6 full-width no-outline q-ma-none" |
| 51 | + class="self-center text text-trucate text-h6 full-width no-outline q-ma-none" |
51 | 52 | tabindex="0" |
52 | 53 | > |
53 | 54 | {{ modelValue.breed }} |
|
60 | 61 | stack-label |
61 | 62 | :filled="false" |
62 | 63 | class="col-span-6" |
| 64 | + dense |
63 | 65 | > |
64 | 66 | <template #control> |
65 | 67 | <div |
|
71 | 73 | </template> |
72 | 74 | </q-field> |
73 | 75 |
|
| 76 | + <q-field |
| 77 | + :label="lang.pet.fields.medicines" |
| 78 | + stack-label |
| 79 | + :filled="false" |
| 80 | + class="col-span-4" |
| 81 | + dense |
| 82 | + > |
| 83 | + <template #control> |
| 84 | + <div |
| 85 | + class="self-center text-h5 full-width no-outline q-ma-none" |
| 86 | + tabindex="0" |
| 87 | + > |
| 88 | + <q-icon |
| 89 | + size="sm" |
| 90 | + :color="modelValue.medicines ? 'green' : 'red'" |
| 91 | + :name="modelValue.medicines ? 'i-mdi-check' : 'i-mdi-close'" |
| 92 | + /> |
| 93 | + </div> |
| 94 | + </template> |
| 95 | + </q-field> |
| 96 | + |
74 | 97 | <!-- <q-field |
75 | 98 | :label="lang.pet.fields.sterilized" |
76 | 99 | :filled="false" |
|
124 | 147 | :label="lang.pet.fields.food" |
125 | 148 | stack-label |
126 | 149 | :filled="false" |
127 | | - class="col-span-17" |
| 150 | + class="col-span-24" |
128 | 151 | > |
129 | 152 | <template #control> |
130 | 153 | <div |
131 | | - class="self-center text-h5 full-width no-outline q-ma-none" |
| 154 | + class="self-center text-h6 full-width no-outline q-ma-none" |
132 | 155 | tabindex="0" |
133 | 156 | > |
134 | 157 | {{ |
|
170 | 193 | </div> |
171 | 194 | </template> |
172 | 195 | </q-field> --> |
173 | | - <q-field |
174 | | - :label="lang.pet.fields.medicines" |
175 | | - stack-label |
176 | | - :filled="false" |
177 | | - class="col-span-7" |
178 | | - > |
179 | | - <template #control> |
180 | | - <div |
181 | | - class="self-center text-h5 full-width no-outline q-ma-none" |
182 | | - tabindex="0" |
183 | | - > |
184 | | - <q-icon |
185 | | - size="sm" |
186 | | - :color="modelValue.medicines ? 'green' : 'red'" |
187 | | - :name="modelValue.medicines ? 'i-mdi-check' : 'i-mdi-close'" |
188 | | - /> |
189 | | - </div> |
190 | | - </template> |
191 | | - </q-field> |
192 | 196 |
|
193 | 197 | <q-field |
194 | 198 | :label="lang.pet.fields.particularities" |
|
198 | 202 | > |
199 | 203 | <template #control> |
200 | 204 | <div |
201 | | - class="self-center text-h5 full-width no-outline q-ma-none" |
| 205 | + class="self-center text-h6 full-width no-outline q-ma-none" |
202 | 206 | style="line-height: 80%" |
203 | 207 | tabindex="0" |
204 | 208 | > |
@@ -237,7 +241,7 @@ export interface Props { |
237 | 241 | } |
238 | 242 | const props = withDefaults(defineProps<Props>(), { |
239 | 243 | width: import.meta.env.VITE_LABEL_WIDTH || 62, |
240 | | - height: import.meta.env.VITE_LABEL_HEIGHT || 124 |
| 244 | + height: import.meta.env.VITE_LABEL_HEIGHT || 100 |
241 | 245 | }) |
242 | 246 | const lang = useLang() |
243 | 247 |
|
|
0 commit comments