Skip to content

Commit 47e34ad

Browse files
committed
fix: show: add thin line splitters
1 parent 657b035 commit 47e34ad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

adminforth/spa/src/components/ShowTable.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div v-if="groupName" class="text-md font-semibold px-6 py-3 flex flex-1 items-center dark:border-gray-600 text-gray-700 bg-lightFormHeading dark:bg-gray-700 dark:text-gray-400 rounded-t-lg">
44
{{ groupName }}
55
</div>
6-
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 table-fixed mb-4">
6+
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 table-fixed">
77
<thead class="text-gray-700 dark:text-gray-400 bg-lightFormHeading dark:bg-gray-700 block md:table-row-group">
88
<tr>
99
<th scope="col" class="px-6 py-3 text-xs uppercase hidden md:w-52 md:table-cell">
@@ -18,7 +18,8 @@
1818
<tr
1919
v-for="column in columns"
2020
:key="column.name"
21-
class="bg-lightForm bg-darkForm odd:dark:bg-gray-900 even:dark:bg-gray-800 dark:border-gray-700 block md:table-row"
21+
class="bg-lightForm border-t border-gray-100
22+
dark:bg-gray-800 dark:border-gray-700 block md:table-row"
2223
>
2324
<component
2425
v-if="column.components?.showRow"

0 commit comments

Comments
 (0)