We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d5f13 commit 36734d7Copy full SHA for 36734d7
1 file changed
src/layouts/modules/theme-drawer/modules/appearance/modules/theme-color.vue
@@ -68,14 +68,15 @@ const swatches: string[] = [
68
{{ $t('theme.appearance.themeColor.followPrimary') }}
69
</NCheckbox>
70
</template>
71
- <NColorPicker
72
- class="w-90px"
73
- :value="themeStore.themeColors[key]"
74
- :disabled="key === 'info' && themeStore.isInfoFollowPrimary"
75
- :show-alpha="false"
76
- :swatches="swatches"
77
- @update:value="handleUpdateColor($event, key)"
78
- />
+ <div class="w-90px">
+ <NColorPicker
+ :value="themeStore.themeColors[key]"
+ :disabled="key === 'info' && themeStore.isInfoFollowPrimary"
+ :show-alpha="false"
+ :swatches="swatches"
+ @update:value="handleUpdateColor($event, key)"
+ />
79
+ </div>
80
</SettingItem>
81
</div>
82
0 commit comments