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.
@@ -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 opacity-40
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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 opacity-40
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