Add 10vh to translateY
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Alessio Davoli 2023-07-18 16:55:32 +02:00
parent 0216210041
commit 7c308deb62

View file

@ -10,7 +10,7 @@
if(evt.detail.component === MapTab) if(evt.detail.component === MapTab)
divider.style.transform = "translateY(calc(0vh + 70px))"; divider.style.transform = "translateY(calc(0vh + 70px))";
else else
divider.style.transform = "translateY(20vh)"; divider.style.transform = "translateY(30vh)";
} }
</script> </script>
@ -32,7 +32,7 @@
background: white; background: white;
margin-top: 0px; margin-top: 0px;
margin-top: 0; margin-top: 0;
transform: translateY(20vh); transform: translateY(30vh);
transition: transform 400ms; transition: transform 400ms;
} }