Added shadow to navbar

This commit is contained in:
Leon Meier 2023-05-23 22:42:22 +02:00
parent 74db923058
commit 50d98c0894
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top" style="z-index: 9999">
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top navShadow" style="z-index: 999">
<div class="container-fluid">
<a class="navbar-brand user-select-none ms-2" onclick="doTheConfetti()" style="cursor: default"><img draggable="false" class="me-2" src="/logo/Design_icon.svg" width="40%" /> AssetFlow</a>
<button
@ -98,7 +98,6 @@
aria-controls="collapseSettingsImport">
<i class="bi bi-box-seam"></i> Import
<i class="bi bi-caret-left-fill dropdownIndicator" data-ref-target="#collapseSettingsImport"></i>
<!-- TODO: This little triangle does not care if it is collapsed or not. But it should so -->
</span>
</a>

View File

@ -146,3 +146,8 @@ body {
.loaderActive {
display: block !important;
}
.navShadow {
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
}