fix: refs #8655 centered button for phone display

This commit is contained in:
Pau Rovira 2025-03-24 11:46:54 +01:00
parent 8995d7d454
commit d2b414c883
1 changed files with 2 additions and 2 deletions

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>