This commit is contained in:
eric
2025-11-13 05:05:53 +08:00
parent cbdc65f56e
commit 891af61146
691 changed files with 83952 additions and 0 deletions

31
app/styles/admin.css Normal file
View File

@@ -0,0 +1,31 @@
.admin-layout {
display: flex;
min-height: 100vh;
background-color: hsl(var(--background));
}
.admin-sidebar {
width: 240px;
padding: 1rem;
border-right: 1px solid hsl(var(--border));
background-color: hsl(var(--background));
}
.admin-content {
flex: 1;
padding: 2rem;
background-color: hsl(var(--background));
}
.resource-section,
.navigation-list {
margin-top: 1.5rem;
}
.resource-item,
.navigation-item {
padding: 1rem;
margin-bottom: 1rem;
border: 1px solid hsl(var(--border));
border-radius: var(--radius);
}