Changement du header

This commit is contained in:
2025-07-21 00:09:10 +02:00
parent 3ab0276413
commit 908591d7de
2 changed files with 32 additions and 4 deletions

View File

@@ -1,9 +1,10 @@
title: "Dashboard"
subtitle: "" # Vide pour ne rien afficher sous le titre
logo: "assets/images/logoDashboard.png" # ton logo personnalisé
theme: default
css: ["assets/custom.css"]
columns: 1
title: ""
subtitle: ""
logo: ""
layout: horizontal
# Désactive le message d'accueil
header: false

View File

@@ -9,3 +9,30 @@
header {
display: none !important;
}
/* Barre du haut en noir */
header.navbar {
background-color: #111 !important;
border-bottom: 1px solid #333;
}
/* Texte du titre plus petit et blanc */
header .title {
font-size: 1.2rem;
color: #fff !important;
}
/* Cache le sous-titre */
header .subtitle {
display: none;
}
/* Réduit la taille du logo */
header .logo img {
height: 32px !important;
}
/* Garde la barre de recherche visible à droite */
.navbar .ml-auto {
margin-left: auto;
}