f2d35ca792
- JWT secret auto-generates and persists to <STORAGE_PATH>/.jwt_secret - Remove setup token: first admin setup is open until system initialized - Fix schema.sql: move CREATE EXTENSION pg_trgm/ltree to top - Update login UI and auth.js to remove setup token fields
39 lines
558 B
CSS
Executable File
39 lines
558 B
CSS
Executable File
/* Content area */
|
|
.content-area {
|
|
flex-grow: 1;
|
|
padding: 20px;
|
|
overflow-y: scroll;
|
|
scrollbar-gutter: stable;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
color: #2d3748;
|
|
}
|
|
|
|
.actions-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px;
|
|
text-align: center;
|
|
color: #888;
|
|
width: 100%;
|
|
height: 300px;
|
|
grid-column: 1 / -1;
|
|
}
|