updated new dashboard

This commit is contained in:
Luca Haid
2025-01-09 17:15:40 +01:00
parent e659d54265
commit 32c541095a
3 changed files with 44 additions and 58 deletions
+19 -11
View File
@@ -4,12 +4,6 @@
margin: 0 auto;
}
.dashboard-content {
display: flex;
flex-direction: column;
gap: 1rem;
}
.filter-section,
.campaign-section {
width: 100%;
@@ -28,14 +22,29 @@
}
@media (min-width: 768px) {
.dashboard-content {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
.dashboard-cards {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1000px) {
.dashboard-cards {
grid-template-columns: repeat(4, 1fr);
}
}
@media (min-width: 1332px) {
.dashboard-cards {
grid-template-columns: repeat(5, 1fr);
}
}
#app > div.card > div > div > div:nth-child(4) {
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
.filter-section,
.campaign-section {
@@ -46,7 +55,6 @@
grid-template-columns: repeat(2, 1fr);
}
.dashboard-data-selector {
grid-template-columns: repeat(1, 1fr);
}