feat: refs #8655 added hover to scroll button
This commit is contained in:
parent
55394c2a2e
commit
8a8ce72c4c
src/components/common
|
@ -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>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue