feat: #8655 added button for scrolling up #1523

Merged
provira merged 34 commits from 8655-scrollUpButton into dev 2025-04-15 11:26:07 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit d2b414c883 - Show all commits

View File

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