From 802f22bd8a9733eb495f4dc12e45cb7986e46e1f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 17 Jan 2018 21:13:54 -0800 Subject: [PATCH] Fix border-radius on Browse button for custom file input inside input groups --- scss/_input-group.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_input-group.scss b/scss/_input-group.scss index 2f7b05d5d82d..78d7bc99aa89 100644 --- a/scss/_input-group.scss +++ b/scss/_input-group.scss @@ -46,9 +46,9 @@ align-items: center; &:not(:last-child) .custom-file-label, - &:not(:last-child) .custom-file-label::before { @include border-right-radius(0); } + &:not(:last-child) .custom-file-label::after { @include border-right-radius(0); } &:not(:first-child) .custom-file-label, - &:not(:first-child) .custom-file-label::before { @include border-left-radius(0); } + &:not(:first-child) .custom-file-label::after { @include border-left-radius(0); } } }