refactor: simplify desktop client UI labels and remove local config section

Replace Unix timestamp with "Just now" label in now_label helper. Update profile label from "No profile provisioned" to "Not provisioned". Change brand copy subtitle based on enrollment state. Rename "Current profile" to "Overview" and "Profile" to "Access" in status panel. Remove "Stored config" surface section showing profile path and revision. Update resources sidebar instructions and rename resource-list to resource-
This commit is contained in:
2026-03-17 21:49:55 +01:00
parent 1b684aecbb
commit 767c633afa
3 changed files with 17 additions and 40 deletions

View File

@@ -218,21 +218,21 @@ input {
word-break: break-word;
}
.resource-list {
.resource-stack {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
display: grid;
gap: 10px;
}
.resource-list li {
padding: 10px 12px;
border-radius: 999px;
background: rgba(117, 227, 186, 0.08);
border: 1px solid rgba(117, 227, 186, 0.15);
color: #dffaf0;
.resource-stack li {
padding: 14px 16px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(177, 197, 229, 0.1);
color: #eef4ff;
word-break: break-word;
}
.login-panel form {