We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c8f6b commit df80dc6Copy full SHA for df80dc6
src/lib/core/style/_button-common.scss
@@ -7,4 +7,11 @@
7
outline: none;
8
border: none;
9
-webkit-tap-highlight-color: transparent;
10
+
11
+ // The `outline: none` from above works on all browsers, however Firefox also
12
+ // adds a special `focus-inner` which we have to disable explicitly. See:
13
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Firefox
14
+ &::-moz-focus-inner {
15
+ border: 0;
16
+ }
17
}
0 commit comments