forked from akanyan/STARTLINER
feat: more breaking changes
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user