feat: add z-index to seasonal styles for improved layering

This commit is contained in:
CodeDevMLH
2025-12-18 00:52:45 +01:00
parent b05b35b8f8
commit 83a8c7fc74
5 changed files with 18 additions and 8 deletions

View File

@@ -1,13 +1,20 @@
.snowflake {
.snowstorm-container {
position: fixed;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 50%;
pointer-events: none;
opacity: 0.7;
width: 100%;
height: 100vh;
background: transparent;
overflow: hidden;
pointer-events: none;
top: 0;
left: 0;
z-index: 10;
}
#snowfallCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
pointer-events: none;
}