Add box shadow to overlay and islands

This commit is contained in:
Fred Boniface 2023-10-06 11:21:00 +01:00
parent 3d22bf5910
commit 8773b080f3
3 changed files with 3 additions and 0 deletions

View File

@ -15,5 +15,6 @@
-webkit-transform: rotate(45deg); -webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
z-index: 100; z-index: 100;
box-shadow: 2px 2px 30px rgba(0,0,0,0.19);
} }
</style> </style>

View File

@ -24,5 +24,6 @@
padding: 10px; padding: 10px;
background-color: var(--overlay-color); background-color: var(--overlay-color);
border-radius: 10px; border-radius: 10px;
box-shadow: 2px 2px 30px rgba(0,0,0,0.19);
} }
</style> </style>

View File

@ -61,6 +61,7 @@
background-color: grey; background-color: grey;
border-radius: 10px; border-radius: 10px;
z-index: 2500; z-index: 2500;
box-shadow: 1px 1px 3px rgba(0,0,0,0.19);
} }
.navButton { .navButton {