feat: more breaking changes

This commit is contained in:
2025-03-06 20:38:18 +00:00
parent 39ba6a5891
commit cda8230d7d
19 changed files with 638 additions and 559 deletions

View File

@ -9,11 +9,17 @@ const prf = usePrfStore();
<div class="mt-4 flex flex-wrap align-middle gap-4">
<Button
:disabled="prf.list.length > 0"
label="Create profile"
label="O.N.G.E.K.I. profile"
icon="pi pi-plus"
aria-label="open-executable"
class="create-button"
@click="prf.prompt"
class="ongeki-button"
@click="() => prf.create('ongeki')"
/>
<Button
:disabled="prf.list.length > 0"
label="CHUNITHM profile"
icon="pi pi-plus"
class="chunithm-button"
@click="() => prf.create('chunithm')"
/>
<div v-for="p in prf.list">
@ -51,7 +57,7 @@ const prf = usePrfStore();
.ongeki-button {
background-color: var(--p-pink-400);
border-color: var(--p-pink-400);
width: 10em;
width: 14em;
}
.ongeki-button:hover,
@ -63,7 +69,7 @@ const prf = usePrfStore();
.chunithm-button {
background-color: var(--p-yellow-400);
border-color: var(--p-yellow-400);
width: 10em;
width: 14em;
}
.chunithm-button:hover,
.chunithm-button:active {