Image background on light mode

How to have a custom image background on light mode? i've tried overriding the css fi-body class but it the bg image sticks even on dark mode
Solution:
.dark .fi-body {
background-image : none;
}
.dark .fi-body {
background-image : none;
}
...
Jump to solution
2 Replies
Solution
awcodes
awcodes4mo ago
.dark .fi-body {
background-image : none;
}
.dark .fi-body {
background-image : none;
}
JustNoOne
JustNoOne4mo ago
Thanks