diff --git a/components/GalleryFeatured.vue b/components/GalleryFeatured.vue
index 3a501bd..187c50e 100644
--- a/components/GalleryFeatured.vue
+++ b/components/GalleryFeatured.vue
@@ -2,6 +2,7 @@
-
@@ -95,6 +96,26 @@ export default {
height: 0;
padding-top: 100%;
margin-bottom: 4px;
+
+ &::before {
+ content: '';
+ display: block;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+
+ transition: opacity 1s;
+ opacity: 0;
+
+ border: 1px solid $color__neutral-700;;
+ }
+
+ &.is-active::before {
+ transition: opacity 2s .2s;
+ opacity: 1;
+ }
}
.gallery-title {