From 1a6fa6cbb722b77eea6aa1d7dcb04b14baef7f00 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 27 Aug 2023 21:54:54 -0500 Subject: [PATCH] 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. --- assets/style/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/style/style.css b/assets/style/style.css index d7e0a77..ca3e79d 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -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,