diff --git a/assets/config.yml b/assets/config.yml index 485136a..ccc01d8 100644 --- a/assets/config.yml +++ b/assets/config.yml @@ -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 diff --git a/assets/custom.css b/assets/custom.css index 6cabbaa..ec1dfb1 100644 --- a/assets/custom.css +++ b/assets/custom.css @@ -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; +}