Style : ajustements visuels Account.vue
All checks were successful
Deploy Preprod / Build and Deploy to Preprod (push) Successful in 30s
All checks were successful
Deploy Preprod / Build and Deploy to Preprod (push) Successful in 30s
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
89c1cb24c0
commit
0fb933326f
1 changed files with 10 additions and 6 deletions
|
|
@ -237,13 +237,14 @@
|
|||
? visibleProjects
|
||||
: allProjectsList"
|
||||
:key="project.uuid"
|
||||
class="project-card | flex items-center | bg-grey-100 rounded-lg px-16 py-12"
|
||||
class="project-card | flex items-center | bg-grey-800 text-white rounded-lg px-16 py-12"
|
||||
style="--column-gap: 1rem"
|
||||
>
|
||||
<button
|
||||
v-if="user.role === 'pochet'"
|
||||
@click="toggleProject(project.uuid)"
|
||||
class="btn btn--sm btn--primary"
|
||||
:aria-pressed="true"
|
||||
:title="'Masquer le projet'"
|
||||
aria-label="Masquer le projet"
|
||||
>
|
||||
|
|
@ -259,16 +260,17 @@
|
|||
></path>
|
||||
</svg>
|
||||
</button>
|
||||
<div class="flex-1 | flex flex-col">
|
||||
<div>
|
||||
<p class="font-medium">{{ project.title }}</p>
|
||||
<p class="text-sm text-grey-600">{{ project.step }}</p>
|
||||
<p class="text-sm text-grey-600">
|
||||
Étape en cours : {{ project.step }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<template
|
||||
v-if="user.role === 'pochet' && hiddenProjectsList.length > 0"
|
||||
>
|
||||
<h3 class="text-grey-700 mt-24 mb-12">Projets masqués</h3>
|
||||
<div
|
||||
v-for="project in hiddenProjectsList"
|
||||
:key="project.uuid"
|
||||
|
|
@ -293,9 +295,11 @@
|
|||
></path>
|
||||
</svg>
|
||||
</button>
|
||||
<div class="flex-1 | flex flex-col">
|
||||
<div>
|
||||
<p class="font-medium">{{ project.title }}</p>
|
||||
<p class="text-sm text-grey-600">{{ project.step }}</p>
|
||||
<p class="text-sm text-grey-600">
|
||||
Étape en cours : {{ project.step }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue