Showing
1 changed file
with
5 additions
and
5 deletions
... | ... | @@ -279,20 +279,20 @@ |
279 | 279 | ref="listEl" |
280 | 280 | :loading="loading" |
281 | 281 | :data-source="cameraList" |
282 | - class="bg-light-50 w-full h-full dark:bg-dark-900 split-mode-list" | |
282 | + class="bg-light-50 w-full !h-full dark:bg-dark-900 split-mode-list" | |
283 | 283 | :grid="(gridLayout as any)" |
284 | 284 | :style="{ '--height': `${100 / pagination.colNumber}%` }" |
285 | 285 | > |
286 | 286 | <template #renderItem="{ item }"> |
287 | 287 | <List.Item> |
288 | - <div class="box-border w-full h-full p-1px"> | |
288 | + <div class="box-border w-full !h-full p-1px"> | |
289 | 289 | <div |
290 | 290 | v-if="item.placeholder" |
291 | - class="bg-black w-full h-full overflow-hidden relative" | |
291 | + class="bg-black w-full !h-full overflow-hidden relative" | |
292 | 292 | ></div> |
293 | 293 | <div |
294 | 294 | v-if="!item.placeholder" |
295 | - class="bg-black w-full h-full overflow-hidden relative video-container" | |
295 | + class="bg-black w-full !h-full overflow-hidden relative video-container" | |
296 | 296 | > |
297 | 297 | <Spin |
298 | 298 | class="!absolute top-1/2 left-1/2 transform -translate-1/2" |
... | ... | @@ -333,7 +333,7 @@ |
333 | 333 | } |
334 | 334 | |
335 | 335 | .split-screen-mode:deep(.ant-spin-container) { |
336 | - height: 100%; | |
336 | + height: 100% !important; | |
337 | 337 | } |
338 | 338 | |
339 | 339 | .video-container { | ... | ... |