From aafd2d96a2f8ad6ea85ef90cdff2e0773008086e Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 16 Apr 2018 12:25:58 -0400 Subject: [PATCH] Remove the top border from the dashboard view headings --- resources/assets/sass/dashboard.scss | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/resources/assets/sass/dashboard.scss b/resources/assets/sass/dashboard.scss index a67a271..954a213 100644 --- a/resources/assets/sass/dashboard.scss +++ b/resources/assets/sass/dashboard.scss @@ -328,6 +328,7 @@ body { margin-bottom: 0px; > thead > tr > th { + border-top: 0; border-bottom: 1px solid #666; } @@ -645,8 +646,14 @@ body { @include media-breakpoint-down(sm) { float: none; width: calc(100% - 30px); - &:first-child { margin: 25px 15px 5px 15px; } - &:last-child { margin: 5px 15px 25px 15px; } + + &:first-child { + margin: 25px 15px 5px 15px; + } + + &:last-child { + margin: 5px 15px 25px 15px; + } } } }