From a744b27940c447661122929e550675fd4571ce02 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 2 Feb 2023 03:35:56 -0800 Subject: [PATCH] Fix job image z ordering --- components/JobImage/index.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/JobImage/index.scss b/components/JobImage/index.scss index b5b8cef3..fb877b47 100644 --- a/components/JobImage/index.scss +++ b/components/JobImage/index.scss @@ -18,8 +18,9 @@ max-width: $width; overflow: hidden; position: relative; - width: $width; transition: box-shadow 0.15s ease-in-out; + width: $width; + z-index: 1; // prettier-ignore @media only screen @@ -45,7 +46,7 @@ left: 50%; transform: translateX(-50%); width: 100%; - z-index: 2; + z-index: 4; } .JobAccessory.Button { @@ -74,6 +75,6 @@ .Overlay { background: none; position: absolute; - z-index: 1; + z-index: 2; } }