fix: Unclickable social icons

This makes the hiding animation worse, as opacity isn't transitioned anymore, this is unfortunately due to an issue where the wave overlaps other page content during the transition
This commit is contained in:
Ushie
2025-05-05 03:03:47 +03:00
parent 0db3580345
commit 377a5ac352

View File

@@ -142,15 +142,13 @@
</div>
<style lang="scss">
.hide-on-scroll {
transition: opacity 0.5s var(--bezier-one);
z-index: -999;
&.hidden {
height: 0;
opacity: 0;
}
.hide-on-scroll.hidden {
z-index: -2;
height: 0;
opacity: 0;
overflow: hidden;
}
main {
padding-block: 2rem;
display: flex;