diff options
Diffstat (limited to 'src/components/TileImg.vue')
| -rw-r--r-- | src/components/TileImg.vue | 3 |
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> { |
