feat: give more space to the block

This commit is contained in:
Polianin Nikita 2024-02-19 13:18:45 +03:00
parent 50a4a26441
commit 86934cecaa

View File

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