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; } }