added new adb dashboard
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
#app {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#topnav {
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.dashboard-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.filter-section,
|
||||
.campaign-section {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dashboard-cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.dashboard-data-selector {
|
||||
padding-top: 12px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.dashboard-data-selector--no-net-owner {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.dashboard-chart {
|
||||
height: 400px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.dashboard-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1000px) {
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1332px) {
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
#app > div.card > div > div > div:nth-child(4) {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.filter-section,
|
||||
.campaign-section {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.dashboard-cards {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
|
||||
#app > div.card > div > div > div:nth-child(4) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
|
||||
|
||||
.dashboard-data-selector {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user