Skip to content

Commit 9e1ab57

Browse files
Fixed background color on privacy and terms
1 parent 409b7b1 commit 9e1ab57

File tree

2 files changed

+132
-168
lines changed

2 files changed

+132
-168
lines changed

web/app.vue

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@ if (
1818
$q.dark.toggle();
1919
}
2020
21-
watch(() => $q.dark.isActive, (isDark) => {
22-
if (isDark) {
23-
userThemeMode.value = 'dark'
24-
} else {
25-
userThemeMode.value = 'light'
21+
watch(
22+
() => $q.dark.isActive,
23+
(isDark) => {
24+
if (isDark) {
25+
userThemeMode.value = "dark";
26+
} else {
27+
userThemeMode.value = "light";
28+
}
2629
}
27-
})
30+
);
2831
</script>
2932

3033
<style>
@@ -33,7 +36,7 @@ body * {
3336
}
3437
3538
strong {
36-
font-weight: bold
39+
font-weight: bold;
3740
}
3841
3942
.page-enter-active,
@@ -57,10 +60,6 @@ strong {
5760
</style>
5861

5962
<style lang="scss">
60-
body {
61-
background-color: $primary;
62-
}
63-
6463
.q-dialog__backdrop,
6564
.q-inner-loading {
6665
backdrop-filter: blur(3px);

0 commit comments

Comments
 (0)