From 91dbf1f01a5721d46f17738da9da955293cd658b Mon Sep 17 00:00:00 2001 From: Francesco Bruno <59353843+FrancescoBrunoDev@users.noreply.github.com> Date: Sun, 5 May 2024 16:33:52 +0000 Subject: [PATCH] navbar changed in order top move as first element the button for start/redeploy --- resources/css/app.css | 4 +- .../components/notification/navbar.blade.php | 30 +++-- .../components/security/navbar.blade.php | 18 +-- .../views/components/server/navbar.blade.php | 70 +++++----- .../components/settings/navbar.blade.php | 26 ++-- .../views/components/team/navbar.blade.php | 22 ++-- .../project/application/general.blade.php | 2 +- .../project/application/heading.blade.php | 34 ++--- .../project/database/heading.blade.php | 121 +++++++++--------- .../livewire/project/service/navbar.blade.php | 15 ++- 10 files changed, 179 insertions(+), 163 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index aaa717700..fd3e1d174 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -157,7 +157,7 @@ tr td:first-child { } .menu-item { - @apply flex items-center w-full gap-3 py-1 px-2 sm:pr-0 dark:hover:bg-coolgray-100 dark:hover:text-white hover:bg-neutral-300; + @apply flex items-center text-sm w-full gap-3 py-1 px-2 sm:pr-0 dark:hover:bg-coolgray-100 dark:hover:text-white hover:bg-neutral-300; } .menu-item-active { @@ -185,7 +185,7 @@ tr td:first-child { } .navbar-main { - @apply flex items-center h-fit gap-6 pb-2 border-b-2 border-solid dark:border-coolgray-200 overflow-x-scroll min-h-10; + @apply flex h-fit flex-col sm:flex-row justify-items-start sm:justify-between gap-4 pb-2 border-b-2 border-solid dark:border-coolgray-200 sm:items-center; } .loading { diff --git a/resources/views/components/notification/navbar.blade.php b/resources/views/components/notification/navbar.blade.php index 24b4fecfd..50e8ae89d 100644 --- a/resources/views/components/notification/navbar.blade.php +++ b/resources/views/components/notification/navbar.blade.php @@ -1,18 +1,20 @@