Fix Appbar shadow lingering when all photos deleted

This commit is contained in:
Timothy Farrell 2018-01-18 14:09:01 -06:00
parent 5dc77a0159
commit 448111b8b8

View File

@ -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]
);