fix(style): set nav z-index to 1000

This ensures the nav element is ALWAYS above all other elements. Prior
to this commit, the navbar ended up under images effectively hiding it.
This commit is contained in:
Price Hiller 2023-08-27 21:54:54 -05:00
parent 65d81421cb
commit 1a6fa6cbb7
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -104,6 +104,8 @@ nav {
border-left-color: var(--sumiInk3);
border-bottom-left-radius: 10px;
/* Set the navbar to have highest priority so it shows above all other elements */
z-index: 1000;
}
}
nav a:link,