init
This commit is contained in:
+1
-1
@@ -98,7 +98,7 @@ app.mount("/static", StaticFiles(directory=static_dir), name="static")
|
|||||||
|
|
||||||
app.include_router(auth_router)
|
app.include_router(auth_router)
|
||||||
app.include_router(inventory_router)
|
app.include_router(inventory_router)
|
||||||
app.include_router(router)
|
app.include_router(router, prefix="/api")
|
||||||
|
|
||||||
|
|
||||||
@app.get("/health")
|
@app.get("/health")
|
||||||
|
|||||||
+6
-6
@@ -1479,19 +1479,19 @@ a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-logout {
|
.btn-logout {
|
||||||
padding: var(--space-2) var(--space-4);
|
padding: var(--space-3) var(--space-5);
|
||||||
font-size: var(--text-sm);
|
font-size: var(--text-base);
|
||||||
font-weight: var(--font-medium);
|
font-weight: var(--font-medium);
|
||||||
color: var(--text-primary);
|
color: #1a1a1a;
|
||||||
background: var(--gray-100);
|
background: #e5e5e5;
|
||||||
border: 1px solid var(--gray-300);
|
border: 1px solid #d4d4d4;
|
||||||
border-radius: var(--radius-md);
|
border-radius: var(--radius-md);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all var(--duration-fast) var(--ease-default);
|
transition: all var(--duration-fast) var(--ease-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-logout:hover {
|
.btn-logout:hover {
|
||||||
background: var(--gray-200);
|
background: #d4d4d4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-login {
|
.btn-login {
|
||||||
|
|||||||
Reference in New Issue
Block a user