diff options
Diffstat (limited to 'src/components/Button.css')
| -rw-r--r-- | src/components/Button.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Button.css b/src/components/Button.css index 210d131..595f053 100644 --- a/src/components/Button.css +++ b/src/components/Button.css @@ -2,7 +2,7 @@ :scope { width: 100%; min-width: fit-content; - height: 3rem; + height: var(--button-height, 2.5rem); padding: 0 1rem; /* Necessary for <a> */ @@ -26,6 +26,7 @@ &:focus { outline: 2px solid var(--primary); + outline-offset: -2px; border-color: var(--base); background-color: var(--button-focus, var(--button-base)); color: var(--button-focus-text, var(--button-text)); |
