Solved main shadow bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-03-18 13:56:42 +01:00
parent a8a2efd091
commit 4aceb2ed62
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E

View File

@ -97,6 +97,15 @@ div#navbarNavfooter li.nav-item{
margin-right: 6px;
}
main{
position: relative; box-shadow: 0 0 20px rgba(0,0,0,0.3); overflow: visible;
main {
position: relative;
box-shadow:
/* Innerer Schatten */
inset 10px 0 10px -10px rgba(0, 0, 0, 0.3), /* linker innerer Schatten */
inset -10px 0 10px -10px rgba(0, 0, 0, 0.3), /* rechter innerer Schatten */
/* Äußerer Schatten */
10px 0 10px -10px rgba(0, 0, 0, 0.3), /* rechter äußerer Schatten */
-10px 0 10px -10px rgba(0, 0, 0, 0.3); /* linker äußerer Schatten */
overflow: visible;
}