diff --git a/scss/core/_variables.scss b/scss/core/_variables.scss
index 3fe1f20d29..c53894661e 100644
--- a/scss/core/_variables.scss
+++ b/scss/core/_variables.scss
@@ -282,7 +282,7 @@ $element-color-levels: map-merge(
"border": 200,
"icon": 300,
"active-border": 300,
- "focus": 300,
+ "focus": 500,
"graphic": 300,
"default": 500,
"light-text": 500,
diff --git a/src/Button/README.md b/src/Button/README.md
index 93e235e375..88585c78dc 100644
--- a/src/Button/README.md
+++ b/src/Button/README.md
@@ -22,11 +22,11 @@ This component utilizes `Button` from React-Bootstrap and extends it with an abi
return (
-
-
-
-
-
+
+
+
+
+
)}
```
@@ -43,11 +43,11 @@ This component utilizes `Button` from React-Bootstrap and extends it with an abi
gap={2}
direction={ isExtraSmall ? "vertical" : "horizontal" }
>
-
-
-
-
-
+
+
+
+
+
)}
```
@@ -65,20 +65,20 @@ This component utilizes `Button` from React-Bootstrap and extends it with an abi
gap={2}
direction={ isExtraSmall ? "vertical" : "horizontal" }
>
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
>
)}
@@ -92,34 +92,41 @@ This component utilizes `Button` from React-Bootstrap and extends it with an abi
return (
<>
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
>
-)}
+ )
+}
```
### When to use the inline size
@@ -127,13 +134,11 @@ This component utilizes `Button` from React-Bootstrap and extends it with an abi
Use inline size buttons for when a button sits with a line of text.
```jsx live
-<>
-
- 2 items selected.
-
-
-
->
+
+ 2 items selected.
+
+
+
```
## Block Buttons
@@ -152,21 +157,41 @@ Use inline size buttons for when a button sits with a line of text.
### Disabled
```jsx live
-<>
-
-
-
->
+() => {
+ const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth });
+
+ return (
+
+
+
+
+
+ )
+}
```
### With empty href
For link to be `disabled`, it must have href defined with some value.
```jsx live
-<>
-
-
->
+() => {
+ const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth });
+
+ return (
+
+
+
+
+ )
+}
```
### With Icons before or after
@@ -181,23 +206,24 @@ For link to be `disabled`, it must have href defined with some value.
gap={2}
direction={ isExtraSmall ? "vertical" : "horizontal" }
>
-