From 448111b8b859a429d2fcc7efe95f3a114c839d0a Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Thu, 18 Jan 2018 14:09:01 -0600 Subject: [PATCH] Fix Appbar shadow lingering when all photos deleted --- packages/gallery/src/interface/allImages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gallery/src/interface/allImages.js b/packages/gallery/src/interface/allImages.js index d52efac..63a6909 100644 --- a/packages/gallery/src/interface/allImages.js +++ b/packages/gallery/src/interface/allImages.js @@ -61,7 +61,7 @@ export function AllImagesView(vm, params) { (t, s) => ({ width: 'inherit', marginRight: '40px', - boxShadow: t === 0 || s.length === 0 ? 'none' : `0px 3px 3px rgba(0, 0, 0, .2)` + boxShadow: t === 0 || s.length === 0 ? 'none' : `-3px 3px 3px rgba(0, 0, 0, .2)` }), [containerScrollTop, sections] );