fix : style global de l'app

This commit is contained in:
2026-02-09 16:08:29 +01:00
parent 0d0aa788db
commit e06636bc15
6 changed files with 48 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="min-h-screen bg-white text-neutral-900">
<div class="min-h-screen bg-white text-neutral-900 flex flex-col">
<header class="w-full border-b border-neutral-200 bg-primary-500">
<div class="flex w-full items-center justify-center px-6 py-4">
<button
@@ -20,10 +20,11 @@
Accueil
</a>
</NuxtLink>
<NuxtLink to="/admin/dashboard" custom v-slot="{ href, navigate, isActive }">
<NuxtLink to="/admin/dashboard" custom v-slot="{ href, navigate, isExactActive }">
<a
:href="href"
@click="navigate"
:class="isExactActive ? 'opacity-100' : 'opacity-50'"
>
Admin
</a>
@@ -97,7 +98,7 @@
</aside>
</transition>
</header>
<main class="mx-auto w-full max-w-[1280px] pb-0">
<main class="mx-auto w-full max-w-[1280px] flex-1 pb-0">
<slot/>
</main>
<footer class="w-full mt-8 bg-primary-500 p-6">

View File

@@ -1,6 +1,6 @@
<template>
<div>
<div class="flex justify-between h-[52px] mb-[80px]">
<div class="flex justify-between h-[52px] mb-[80px] mt-16">
<div class="flex flex-1 mr-16">
<UiStepper
:labels="RECEPTION_STEP_LABELS"

View File

@@ -1,5 +1,5 @@
<template>
<div class="flex items-center justify-start gap-10">
<div class="flex items-center justify-start gap-10 mt-16 cursor-pointer">
<Icon @click="router.push('/')" name="gg:arrow-left-o" style="color: black" size="44" />
<h1 class="text-3xl font-bold uppercase">listes des réceptions finie</h1>
</div>

View File

@@ -1,5 +1,5 @@
<template>
<div class="flex items-center justify-between ">
<div class="flex items-center justify-between mt-16 cursor-pointer">
<div class="flex items-center gap-10">
<Icon @click="router.push('/')" name="gg:arrow-left-o" style="color: black" size="44" />
<h1 class="text-3xl font-bold uppercase">listes des réceptions en attente</h1>