From 6c42558a7f3a4f15339580cb50d14d4ba4d1f8a6 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 17 Dec 2015 12:23:06 -0500 Subject: [PATCH] added min height to product boxes --- css/app.css | 4 ++-- scss/_body.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/app.css b/css/app.css index be360e8..7566bb4 100644 --- a/css/app.css +++ b/css/app.css @@ -6731,7 +6731,7 @@ body .shadow-wrapper { .prodImg { text-align: center; padding-bottom: 10px; - min-height: 206px; } + min-height: 275px; } .prodTitle { text-align: left; @@ -6749,7 +6749,7 @@ body .shadow-wrapper { .product { width: 22%; - min-height: 360px; + min-height: 380px; padding: 15px 0px; margin: 10px; border: 1px solid white; } diff --git a/scss/_body.scss b/scss/_body.scss index c2734aa..2df3f5d 100644 --- a/scss/_body.scss +++ b/scss/_body.scss @@ -16,7 +16,7 @@ body { .prodImg{ text-align: center; padding-bottom: 10px; - min-height: 206px; + min-height: 275px; } .prodTitle{ text-align: left; @@ -34,7 +34,7 @@ body { } .product{ width: 22%; - min-height: 360px; + min-height: 380px; padding: 15px 0px; margin: 10px; border: 1px solid white; -- 2.17.1