We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f969a3 commit 1ec2d3aCopy full SHA for 1ec2d3a
course/.vitepress/theme/version.ts
@@ -10,7 +10,9 @@ export default defineComponent({
10
11
const currentVersion: Ref<string> = ref(version);
12
13
- const fontColor: ComputedRef<string> = computed(() => (isDark.value ? "#fff" : "#000"));
+ const fontColor: ComputedRef<string> = computed(() =>
14
+ isDark.value ? "#fff" : "#000",
15
+ );
16
17
const backgroundColor: ComputedRef<string> = computed(() =>
18
isDark.value ? "#14120F" : "#ebedf0",
0 commit comments