From 7f930c83a35ef638b3fc62e732d630a7305f94be Mon Sep 17 00:00:00 2001 From: Pavel Mironchik Date: Thu, 31 Dec 2020 13:45:58 +0600 Subject: [PATCH] Fix a width of a column with a document number. --- app/Abstracts/View/Components/DocumentIndex.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Abstracts/View/Components/DocumentIndex.php b/app/Abstracts/View/Components/DocumentIndex.php index b736f2c40..ae8af471f 100644 --- a/app/Abstracts/View/Components/DocumentIndex.php +++ b/app/Abstracts/View/Components/DocumentIndex.php @@ -910,11 +910,11 @@ abstract class DocumentIndex extends Component $this->class_count++; break; case 2: - $class = 'col-md-4 col-lg-2 col-xl-2 d-none d-md-block'; + $class = 'col-md-4 col-lg-3 col-xl-3 d-none d-md-block'; $this->class_count += 2; break; case 3: - $class = 'col-md-5 col-lg-2 col-xl-2 d-none d-md-block'; + $class = 'col-md-5 col-lg-4 col-xl-4 d-none d-md-block'; $this->class_count += 3; break; }