This commit is contained in:
zadit biasa aja
2025-06-26 09:28:19 +00:00
parent cd212ca360
commit 3006d1332c
16 changed files with 514 additions and 187 deletions

26
src/Dashboard.module.css Normal file
View File

@@ -0,0 +1,26 @@
.dashboard {
display: flex;
width: 100%;
max-width: 1200px;
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.mainContent {
flex: 1;
padding: 1rem;
}
.cards {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
@media (max-width: 768px) {
.dashboard {
flex-direction: column;
}
}