fix: Button loading state not respecting the border-width (#28886)

This commit is contained in:
Janneke Janssen 2021-01-16 10:50:56 +01:00 committed by GitHub
parent 70a777fd44
commit 005627e4a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,10 +117,10 @@
&::before {
position: absolute;
top: -1px;
right: -1px;
bottom: -1px;
left: -1px;
top: -@btn-border-width;
right: -@btn-border-width;
bottom: -@btn-border-width;
left: -@btn-border-width;
z-index: 1;
display: none;
background: @component-background;