Skip to content

Commit

Permalink
fix: sectionFullScreen bg on darkMode enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
vikdiesel committed Sep 28, 2023
1 parent 12116b2 commit 55435a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SectionFullScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const props = defineProps({
})
const colorClass = computed(() => {
if (useDarkModeStore().darkMode) {
if (useDarkModeStore().isEnabled) {
return gradientBgDark
}
Expand Down

0 comments on commit 55435a8

Please sign in to comment.