Skip to content

Commit

Permalink
fix: keep tabs visible in panel at loading
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpestov committed Jun 11, 2024
1 parent 3dd0465 commit 96774b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panels/Panel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<div class="t-h-[1px] dark:t-bg-gray-600 t-bg-gray-200 t-mx-4" />
<div class="panel-body t-relative t-overflow-hidden t-flex t-flex-1 t-flex-col t-bg-none">
<div v-if="isLoading" class="t-absolute t-z-50 t-flex t-bg-gray-50 dark:t-bg-gray-800 t-w-full t-h-full t-justify-center t-items-center">
<div v-if="isLoading" class="t-absolute t-bottom-0 t-z-50 t-flex t-bg-gray-50 dark:t-bg-gray-800 t-w-full t-h-[94%] t-justify-center t-items-center">
<Loading class="t-text-5xl" />
</div>
<template v-if="tabs.length > 1">
Expand Down

0 comments on commit 96774b2

Please sign in to comment.