Upgrade to bootstrap 4.5
[roojs1] / scss / bootstrap / mixins / _badge.scss
index 3075ddd..f1c4991 100644 (file)
@@ -2,11 +2,16 @@
   color: color-yiq($bg);
   background-color: $bg;
 
-  &[href] {
-    @include hover-focus {
+  @at-root a#{&} {
+    @include hover-focus() {
       color: color-yiq($bg);
-      text-decoration: none;
       background-color: darken($bg, 10%);
     }
+
+    &:focus,
+    &.focus {
+      outline: 0;
+      box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
+    }
   }
-}
\ No newline at end of file
+}