From c3290cff08864d51355550446cfeb024285988bd Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 1 Feb 2024 20:24:14 +0100 Subject: [PATCH] wip #6693 @2 --- app/Models/Page.php | 10 ++++++++++ bootstrap/app.php | 2 +- config/backpack/menu.php | 4 ++-- resources/css/tabler/app.css | 6 +++++- resources/css/tabler/app.css.map | 2 +- resources/css/tabler/app.sass | 4 +++- 6 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 app/Models/Page.php diff --git a/app/Models/Page.php b/app/Models/Page.php new file mode 100644 index 0000000..1775a51 --- /dev/null +++ b/app/Models/Page.php @@ -0,0 +1,10 @@ + [ ['label' => 'Contenus', 'icon' => 'ti ti-brush', 'items' => [ - ['label' => 'Pages', 'icon' => 'ti ti-file-code', 'url' => 'pages'], - ['label' => 'Traductions', 'icon' => 'ti ti-language', 'url' => 'pages'], + ['label' => 'Pages', 'icon' => 'ti ti-file-code', 'url' => 'page'], + ['label' => 'Traductions', 'icon' => 'ti ti-language', 'url' => 'page'], ['label' => 'Paramètres', 'icon' => 'ti ti-adjustments', 'url' => 'settings'], ]], ['label' => 'Utilisateurs', 'icon' => 'ti ti-users', 'section' => 'users', 'items' => [ diff --git a/resources/css/tabler/app.css b/resources/css/tabler/app.css index a111ba0..1316717 100644 --- a/resources/css/tabler/app.css +++ b/resources/css/tabler/app.css @@ -3,8 +3,12 @@ padding-bottom: 0; } +#logo { + position: relative; + top: 1px; +} #logo svg { - width: 160px; + height: 45px; padding-right: 2em; } diff --git a/resources/css/tabler/app.css.map b/resources/css/tabler/app.css.map index 7c0dbe4..f4b2e5f 100644 --- a/resources/css/tabler/app.css.map +++ b/resources/css/tabler/app.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["app.sass"],"names":[],"mappings":"AACI;EACI;EACA;;;AAEJ;EACI;EACA","file":"app.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["app.sass"],"names":[],"mappings":"AACI;EACI;EACA;;;AACR;EACI;EACA;;AACA;EACI;EACA","file":"app.css"} \ No newline at end of file diff --git a/resources/css/tabler/app.sass b/resources/css/tabler/app.sass index c1ef3f3..363e477 100644 --- a/resources/css/tabler/app.sass +++ b/resources/css/tabler/app.sass @@ -3,7 +3,9 @@ padding-top: 0 padding-bottom: 0 #logo + position: relative + top: 1px svg - width: 160px + height: 45px padding-right: 2em -- 2.39.5