feat: display version number
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 2m4s
CI / Lint & Test (pull_request) Failing after 6m15s
CI / Build Linux (pull_request) Has been skipped
CI / Build Windows (cross-compile) (pull_request) Has been skipped

This commit is contained in:
2026-01-29 16:43:23 -08:00
parent 76d851ad11
commit 23519c0502
2 changed files with 32 additions and 0 deletions
+23
View File
@@ -73,6 +73,29 @@ body {
font-size: 1.125rem;
}
.app-version {
display: inline-block;
margin-top: 0.5rem;
padding: 0.25rem 0.75rem;
background-color: var(--witch-plum);
color: var(--witch-lavender);
border: 1px solid var(--witch-rose);
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
box-shadow: 0 2px 4px var(--witch-shadow);
transition: all 0.2s;
cursor: default;
}
.app-version:hover {
background-color: var(--witch-rose);
color: var(--witch-moon);
border-color: var(--witch-mauve);
transform: translateY(-1px);
box-shadow: 0 4px 6px var(--witch-shadow);
}
/* Warning Banner */
.warning-banner {
background-color: var(--witch-plum);