From 86934cecaa71b697f4822fffea28a21c1154953c Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Mon, 19 Feb 2024 13:18:45 +0300 Subject: [PATCH] feat: give more space to the block --- src/components/table-header/table-header.component.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/table-header/table-header.component.css b/src/components/table-header/table-header.component.css index cfe9ce3..aae6da5 100644 --- a/src/components/table-header/table-header.component.css +++ b/src/components/table-header/table-header.component.css @@ -55,19 +55,19 @@ @media screen and (max-width: 782px) { .app-table-header { - grid-template-columns: repeat(2, 1fr); + grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); } .app-table-header div:nth-child(1) { - grid-area: 1 / 1 / 2 / 2; + grid-area: 1 / 1 / 2 / 3; } .app-table-header div:nth-child(2) { - grid-area: 2 / 1 / 3 / 3; + grid-area: 2 / 1 / 3 / 4; } .app-table-header div:nth-child(3) { - grid-area: 1 / 2 / 2 / 3; + grid-area: 1 / 3 / 2 / 4; } }