From a3a8fef6b2821f99f6f1a9d03f8e19fed325e2d5 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Wed, 26 May 2021 15:19:26 +0100 Subject: [PATCH] Made users header interface more adaptable Search input was stacking on create button on default desktop view due when viewing in russian due to combined width exceeding container. Made into normal flexbox instead. Closes #2147 --- resources/sass/_layout.scss | 3 +++ resources/views/users/index.blade.php | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/resources/sass/_layout.scss b/resources/sass/_layout.scss index 60205eaaa..eb6b443a0 100644 --- a/resources/sass/_layout.scss +++ b/resources/sass/_layout.scss @@ -157,6 +157,9 @@ body.flexbox { .justify-center { justify-content: center; } +.justify-space-between { + justify-content: space-between; +} .items-center { align-items: center; } diff --git a/resources/views/users/index.blade.php b/resources/views/users/index.blade.php index 6bc229ec6..5eef51175 100644 --- a/resources/views/users/index.blade.php +++ b/resources/views/users/index.blade.php @@ -9,11 +9,11 @@
-
+

{{ trans('settings.users') }}

-
-
+
+
@foreach(collect($listDetails)->except('search') as $name => $val)