1
0

replaced ti-music

This commit is contained in:
dakkar
2024-06-21 18:12:01 +01:00
parent 0b72513ce5
commit d21d428d64
6 changed files with 6 additions and 5 deletions
@@ -35,7 +35,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<div class="_woodenFrameInner">
<div class="_gaps" style="padding: 16px;">
<div style="font-size: 90%;"><i class="ph-music-notes ph-bold ph-lg"></i> {{ i18n.ts.soundWillBePlayed }}</div>
<div style="font-size: 90%;"><i class="ti ti-music"></i> {{ i18n.ts.soundWillBePlayed }}</div>
<MkSwitch v-model="mute">
<template #label>{{ i18n.ts.mute }}</template>
</MkSwitch>
@@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkButton primary gradate rounded @click="matchAny">{{ i18n.ts._reversi.freeMatch }}</MkButton>
<MkButton primary gradate rounded @click="matchUser">{{ i18n.ts.invite }}</MkButton>
</div>
<div style="font-size: 90%; opacity: 0.7; text-align: center;"><i class="ph-music-notes ph-bold ph-lg"></i> {{ i18n.ts.soundWillBePlayed }}</div>
<div style="font-size: 90%; opacity: 0.7; text-align: center;"><i class="ti ti-music"></i> {{ i18n.ts.soundWillBePlayed }}</div>
</div>
<MkFolder v-if="invitations.length > 0" :defaultOpen="true">
@@ -120,7 +120,7 @@ const menuDef = computed(() => [{
to: '/settings/statusbar',
active: currentPage.value?.route.name === 'statusbar',
}, {
icon: 'ph-music-notes ph-bold ph-lg',
icon: 'ti ti-music',
text: i18n.ts.sounds,
to: '/settings/sounds',
active: currentPage.value?.route.name === 'sounds',
@@ -96,6 +96,6 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.sounds,
icon: 'ph-music-notes ph-bold ph-lg',
icon: 'ti ti-music',
}));
</script>