From 5099ea2f01f1fcb0a05222f7faa9cf98fa69fd78 Mon Sep 17 00:00:00 2001 From: Arpad Csanyi Date: Sat, 26 Mar 2016 00:47:38 +0100 Subject: [PATCH] Close #21 by making the border of the popover's tip black. --- css/style.css | 6 ++++-- sass/style.scss | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index b7664320..9cc9bf9a 100644 --- a/css/style.css +++ b/css/style.css @@ -1,7 +1,9 @@ .popover { padding: 0; } - .popover.bottom > .arrow:after { - border-bottom-color: #f7f7f7; } + .popover.bottom > .arrow { + border-bottom-color: #000; } + .popover.bottom > .arrow:after { + border-bottom-color: #f7f7f7; } .popover-content { padding: 10px 24px; } diff --git a/sass/style.scss b/sass/style.scss index ab11649d..51b95cb9 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -3,6 +3,8 @@ &.bottom { > .arrow { + border-bottom-color: #000; + &:after { border-bottom-color: #f7f7f7; }