From 7909af6a5686bb804bd101f716c04a7c815f6f22 Mon Sep 17 00:00:00 2001 From: helioguardabaxo Date: Sat, 23 Jan 2021 11:55:09 -0300 Subject: [PATCH 1/2] Remove border and add box-shadow in boards to My Cards --- client/components/main/myCards.styl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/client/components/main/myCards.styl b/client/components/main/myCards.styl index 2126295b6..0bf7637b7 100644 --- a/client/components/main/myCards.styl +++ b/client/components/main/myCards.styl @@ -1,15 +1,14 @@ .my-cards-board-wrapper - border-radius: 8px + border-radius: 4px //padding: 0.5rem min-width: 400px - border-width: 8px - border-color: grey - border-style: solid margin-bottom: 2rem margin-right: auto margin-left: auto + box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; .my-cards-board-title + border-radius: 4px 4px 0 0; font-size: 1.4rem font-weight: bold padding: 0.5rem From 66f5f254d066bf22b62de0ecd88a2767489c6269 Mon Sep 17 00:00:00 2001 From: helioguardabaxo Date: Sat, 23 Jan 2021 12:43:11 -0300 Subject: [PATCH 2/2] Remove box-shadow in board to My Cards --- client/components/main/myCards.styl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/client/components/main/myCards.styl b/client/components/main/myCards.styl index 0bf7637b7..1929906df 100644 --- a/client/components/main/myCards.styl +++ b/client/components/main/myCards.styl @@ -1,14 +1,15 @@ .my-cards-board-wrapper - border-radius: 4px + border-radius: 0 0 4px 4px; //padding: 0.5rem min-width: 400px margin-bottom: 2rem margin-right: auto margin-left: auto - box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; - + border-width: 2px + border-style: solid + border-color: #a2a2a2 + .my-cards-board-title - border-radius: 4px 4px 0 0; font-size: 1.4rem font-weight: bold padding: 0.5rem