adminforth 1.0.50 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/spa/spa/src/App.vue +1 -1
- package/package.json +1 -1
- package/spa/src/App.vue +1 -1
package/dist/spa/spa/src/App.vue
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<template v-for="(item, i) in coreStore.menu" :key="`menu-${i}`">
|
|
75
75
|
<div v-if="item.type === 'divider'" class="border-t border-gray-200 dark:border-gray-700"></div>
|
|
76
76
|
<div v-else-if="item.type === 'gap'" class="flex items-center justify-center h-8"></div>
|
|
77
|
-
<div v-else-if="item.type === 'heading'" class="flex items-center justify-left pl-2 h-8
|
|
77
|
+
<div v-else-if="item.type === 'heading'" class="flex items-center justify-left pl-2 h-8 text-gray-400 dark:text-gray-400
|
|
78
78
|
">{{ item.label }}</div>
|
|
79
79
|
|
|
80
80
|
|
package/package.json
CHANGED
package/spa/src/App.vue
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<template v-for="(item, i) in coreStore.menu" :key="`menu-${i}`">
|
|
75
75
|
<div v-if="item.type === 'divider'" class="border-t border-gray-200 dark:border-gray-700"></div>
|
|
76
76
|
<div v-else-if="item.type === 'gap'" class="flex items-center justify-center h-8"></div>
|
|
77
|
-
<div v-else-if="item.type === 'heading'" class="flex items-center justify-left pl-2 h-8
|
|
77
|
+
<div v-else-if="item.type === 'heading'" class="flex items-center justify-left pl-2 h-8 text-gray-400 dark:text-gray-400
|
|
78
78
|
">{{ item.label }}</div>
|
|
79
79
|
|
|
80
80
|
|