aboutsummaryrefslogtreecommitdiff
path: root/src/components/TileImg.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/TileImg.vue')
-rw-r--r--src/components/TileImg.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/TileImg.vue b/src/components/TileImg.vue
index 1d83b37..1eb056a 100644
--- a/src/components/TileImg.vue
+++ b/src/components/TileImg.vue
@@ -35,7 +35,8 @@ export default defineComponent({
flexDirection: 'column',
// Other
borderRadius: this.options.borderRadius + 'px',
- boxShadow: this.highlight ? this.options.shadowHighlight : this.options.shadowNormal,
+ boxShadow: this.highlight ? this.options.shadowHighlight :
+ (this.layoutNode.searchResult ? this.options.shadowSearchResult : this.options.shadowNormal),
};
},
headerStyles(): Record<string,string> {