Add back to top button
All checks were successful
Deploy / Deploy (push) Successful in 4s

This commit is contained in:
2025-05-09 11:50:05 +00:00
parent 69f85e051a
commit 9ed3085ed0
4 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/*
* Footer back to top style
*/
:root {
--button-float-bg: #f9f9fc;
--button-float-bg-hover: #ececf6;
--button-float-arrow: #2c3e50;
--button-float-shadow: rgba(0, 0, 0, 0.1);
--button-float-shadow-hover: rgba(0, 0, 0, 0.15);
}
[data-scheme="dark"] {
--button-float-bg: #424242;
--button-float-bg-hover: #383838;
--button-float-arrow: rgba(255, 255, 255, 0.7);
--button-float-shadow: rgba(0, 0, 0, 0.3);
--button-float-shadow-hover: rgba(0, 0, 0, 0.5);
}