rename bg-black to bg-primary

+ rename BottomBar to NowPlayingRight
This commit is contained in:
geoffrey45
2022-08-19 22:14:23 +03:00
parent ade8edcba2
commit 79dcc61084
24 changed files with 53 additions and 55 deletions
+6 -6
View File
@@ -4,16 +4,16 @@ import useSettingsStore from "@/stores/settings";
const settings = useSettingsStore;
export default [
{
title: "Use left now playing card",
type: SettingType.switch,
source: () => settings().use_side_np,
action: () => settings().toggleUseSideNP(),
},
{
title: "Use right bottom now playing card",
type: SettingType.switch,
source: () => settings().use_right_np,
action: () => settings().toggleUseRightNP(),
},
{
title: "Use left now playing card",
type: SettingType.switch,
source: () => settings().use_side_np,
action: () => settings().toggleUseSideNP(),
},
];