feat: Resolve test suite regressions and enhance token tamper detection

feat: Add UI router to application for improved routing
style: Update breadcrumb styles in main.css and remove redundant styles from scenarios.css
This commit is contained in:
2025-11-12 20:30:40 +01:00
parent 1199813da0
commit 6d496a599e
6 changed files with 49 additions and 15 deletions

View File

@@ -302,6 +302,26 @@ a {
border-color: var(--brand);
}
.breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: var(--muted);
margin-bottom: 1.2rem;
}
.breadcrumb a {
color: var(--brand-2);
text-decoration: none;
}
.breadcrumb a::after {
content: ">";
margin-left: 0.5rem;
color: var(--muted);
}
.app-layout {
display: flex;
min-height: 100vh;
@@ -1031,7 +1051,7 @@ tbody tr:nth-child(even) {
.site-footer {
background-color: var(--brand);
color: var(--color-text-invert);
color: var(--color-text-strong);
margin-top: 3rem;
}
@@ -1056,6 +1076,19 @@ tbody tr:nth-child(even) {
object-fit: cover;
}
footer p {
margin: 0;
}
footer a {
font-weight: 600;
color: var(--color-text-dark);
text-decoration: underline;
}
footer a:hover,
footer a:focus {
color: var(--color-text-strong);
}
.sidebar-toggle {
display: none;
align-items: center;

View File

@@ -23,20 +23,6 @@
background: rgba(43, 165, 143, 0.12);
}
.breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: var(--muted);
margin-bottom: 1.2rem;
}
.breadcrumb a {
color: var(--brand-2);
text-decoration: none;
}
.header-actions {
display: flex;
gap: 0.75rem;