From 1921abb8664d15c13ccf155e1df2d27cbf90846a Mon Sep 17 00:00:00 2001 From: Jaythan Elam Date: Wed, 7 Jul 2021 17:48:32 -0400 Subject: [PATCH] added a box shadow to product images --- snippets/custom-styles.liquid | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/snippets/custom-styles.liquid b/snippets/custom-styles.liquid index ee10924..84d3ee7 100644 --- a/snippets/custom-styles.liquid +++ b/snippets/custom-styles.liquid @@ -19,6 +19,10 @@ /* Add your theme customizations below */ -.trial { - border: 2px solid red; +.image--root img { + box-shadow: 0.5rem 0.5rem #FFEAC6; +} + +.image--root img:hover { + box-shadow: 0.5rem 0.5rem #FAAE42; } \ No newline at end of file