feat: refs #8655 added hover to scroll button

This commit is contained in:
Pau Rovira 2025-03-20 07:34:06 +01:00
parent 55394c2a2e
commit 8a8ce72c4c
1 changed files with 10 additions and 1 deletions
src/components/common

View File

@ -95,8 +95,17 @@ onUnmounted(() => {
.scroll-to-top {
position: fixed;
top: 70px;
font-size: 50px;
font-size: 65px;
left: 50%;
z-index: 1000;
transition: transform 0.2s ease-in-out;
}
.scroll-to-top:hover {
transform: scale(1.2);
cursor: pointer;
filter: brightness(0.8);
}
</style>