feature: Move back top top button styling to buttons.css

This commit is contained in:
Keith Solomon
2026-03-19 15:59:17 -05:00
parent ced4f4c021
commit 7a578c67c0
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
class BackToTopButton extends HTMLElement {
connectedCallback() {
this.innerHTML = `
<button id="backToTopBtn" aria-label="Back to top" class="back-to-top" style="display:none;position:fixed;bottom:2rem;right:2rem;z-index:1000;padding:0.75em 1.5em;font-size:1.1rem;border-radius:2em;background:var(--color-primary,#3857BC);color:#fff;border:none;box-shadow:0 2px 8px rgba(0,0,0,0.15);cursor:pointer;transition:opacity 0.2s;">
<button id="backToTopBtn" aria-label="Back to top" class="back-to-top" style="">
↑ Top
</button>
`;