feat(ui): add privacy policy and impressum links to sidebar footer
All checks were successful
CI / Format (push) Successful in 3s
CI / Clippy (push) Successful in 2m29s
CI / Security Audit (push) Has been skipped
CI / Tests (push) Has been skipped
CI / Format (pull_request) Successful in 2s
CI / Clippy (pull_request) Successful in 2m19s
CI / Security Audit (pull_request) Has been skipped
CI / Tests (pull_request) Has been skipped
CI / Deploy (push) Has been skipped
CI / Deploy (pull_request) Has been skipped
All checks were successful
CI / Format (push) Successful in 3s
CI / Clippy (push) Successful in 2m29s
CI / Security Audit (push) Has been skipped
CI / Tests (push) Has been skipped
CI / Format (pull_request) Successful in 2s
CI / Clippy (pull_request) Successful in 2m19s
CI / Security Audit (pull_request) Has been skipped
CI / Tests (pull_request) Has been skipped
CI / Deploy (push) Has been skipped
CI / Deploy (pull_request) Has been skipped
Add legal links below the social icons in the sidebar footer, matching the existing links on the landing page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -215,6 +215,31 @@ h6 {
|
|||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidebar-legal {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 6px;
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legal-link {
|
||||||
|
font-size: 11px;
|
||||||
|
color: var(--text-dimmest);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legal-link:hover {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.legal-sep {
|
||||||
|
font-size: 10px;
|
||||||
|
color: var(--text-dimmest);
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
.sidebar-version {
|
.sidebar-version {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: var(--text-dimmest);
|
color: var(--text-dimmest);
|
||||||
|
|||||||
@@ -245,6 +245,11 @@ fn SidebarFooter() -> Element {
|
|||||||
Icon { icon: BsGrid, width: 16, height: 16 }
|
Icon { icon: BsGrid, width: 16, height: 16 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
div { class: "sidebar-legal",
|
||||||
|
Link { to: Route::PrivacyPage {}, class: "legal-link", "Privacy Policy" }
|
||||||
|
span { class: "legal-sep", "|" }
|
||||||
|
Link { to: Route::ImpressumPage {}, class: "legal-link", "Impressum" }
|
||||||
|
}
|
||||||
p { class: "sidebar-version", "v{version}" }
|
p { class: "sidebar-version", "v{version}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user