new color scheme + some fixes

This commit is contained in:
xds
2025-03-10 23:55:38 +03:00
parent a68c565f71
commit b5d639cc2e
36 changed files with 101 additions and 91 deletions

View File

@@ -62,7 +62,7 @@ const resetForm = () => {
<template>
<LoadingView v-if="loading" halfscreen/>
<div v-else class="flex flex-col gap-4 mt-1">
<div v-else class="flex flex-col gap-4 mt-1 h-80 items-center justify-between">
<FloatLabel variant="on" class="w-full">
<label for="name">Название</label>
<InputText v-model="spaceName" id="name" class="w-full"/>
@@ -76,7 +76,7 @@ const resetForm = () => {
Создать стандартный набор категорий?
</div>
<div class="flex flex-row gap-2 justify-end items-center">
<Button label="Создать" severity="success" icon="pi pi-save" @click="createSpace"/>
<Button label="Создать" severity="success" icon="pi pi-save" @click="createSpace" class="!bg-blue-300 hover:!bg-blue-400 !border-blue-300"/>
<Button label="Отмена" severity="secondary" icon="pi pi-times-circle" @click="cancel"/>
</div>
</div>