agrega funcion de users y dashboard

This commit is contained in:
Marco Gallegos
2025-08-12 22:28:28 -06:00
parent f3ef5952d2
commit 576faface2
8 changed files with 493 additions and 48 deletions

View File

@@ -248,10 +248,57 @@ button.action-btn {
/* Logo en header */
.main-header .header-logo {
max-height: 50px;
height: 50px;
width: auto;
margin-right: 2rem;
}
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--color-border);
}
/* Dashboard Styles */
.dashboard-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-bottom: 2rem;
}
.stat-card {
background-color: #fff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
text-align: center;
}
.stat-card h3 {
margin: 0 0 0.5rem 0;
font-size: 1rem;
color: #555;
}
.stat-card p {
margin: 0;
font-size: 2rem;
font-weight: bold;
color: var(--color-primary);
}
.dashboard-chart {
background-color: #fff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.tabs {
display: flex;
}