Skip to content

Commit d416f16

Browse files
committed
style: add border radius
1 parent be3c23e commit d416f16

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

adminforth/spa/src/views/ShowView.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@
7575
<div
7676
v-if="loading"
7777
role="status"
78-
class="animate-pulse overflow-x-auto shadow-resourseFormShadow dark:shadow-darkResourseFormShadow"
78+
class="animate-pulse overflow-x-auto shadow-resourseFormShadow dark:shadow-darkResourseFormShadow rounded-lg overflow-hidden border border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
7979
>
8080
<div
8181
v-if="groups && groups.length > 0"
82-
class="text-md font-semibold px-6 py-3 flex flex-1 items-center bg-lightShowTableHeadingBackground dark:bg-darkShowTableHeadingBackground dark:text-darkShowTableHeadingText rounded-t-lg border-b border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
82+
class="text-md font-semibold px-6 py-3 flex flex-1 items-center bg-lightShowTableHeadingBackground dark:bg-darkShowTableHeadingBackground dark:text-darkShowTableHeadingText border-b border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
8383
>
8484
<div class="h-4 bg-gray-300 dark:bg-gray-600 rounded-full w-32"></div>
8585
</div>
8686

87-
<table class="w-full text-sm text-left table-fixed border rounded-lg overflow-hidden">
87+
<table class="w-full text-sm text-left table-fixed border-collapse">
8888
<thead class="bg-lightShowTableUnderHeadingBackground dark:bg-darkShowTableUnderHeadingBackground block md:table-row-group">
89-
<tr>
89+
<tr class="block md:table-row">
9090
<th scope="col" class="px-6 py-3 text-xs uppercase hidden md:w-52 md:table-cell text-lightShowTableUnderHeadingText dark:text-darkShowTableUnderHeadingText">
9191
{{ $t('Field') }}
9292
</th>
@@ -228,7 +228,7 @@ onMounted(async () => {
228228
if(coreStore.resourceOptions){
229229
checkAcessByAllowedActions(coreStore.resourceOptions.allowedActions,'show');
230230
}
231-
loading.value = false;
231+
// loading.value = false;
232232
});
233233
234234
const groups = computed(() => {

0 commit comments

Comments
 (0)