Fix job image z ordering

This commit is contained in:
Justin Edmund 2023-02-02 03:35:56 -08:00
parent 4271e2fcc8
commit a744b27940

View file

@ -18,8 +18,9 @@
max-width: $width; max-width: $width;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
width: $width;
transition: box-shadow 0.15s ease-in-out; transition: box-shadow 0.15s ease-in-out;
width: $width;
z-index: 1;
// prettier-ignore // prettier-ignore
@media only screen @media only screen
@ -45,7 +46,7 @@
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
width: 100%; width: 100%;
z-index: 2; z-index: 4;
} }
.JobAccessory.Button { .JobAccessory.Button {
@ -74,6 +75,6 @@
.Overlay { .Overlay {
background: none; background: none;
position: absolute; position: absolute;
z-index: 1; z-index: 2;
} }
} }