diff options
Diffstat (limited to 'demo/src/sass/components/buttons.scss')
-rw-r--r-- | demo/src/sass/components/buttons.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demo/src/sass/components/buttons.scss b/demo/src/sass/components/buttons.scss index 5ff6fc12..6afe98d7 100644 --- a/demo/src/sass/components/buttons.scss +++ b/demo/src/sass/components/buttons.scss @@ -22,13 +22,13 @@ // Buttons .button { font-weight: $font-weight-bold; - padding-left: $spacing-base; - padding-right: $spacing-base; + padding-left: ($spacing-base * 1.25); + padding-right: ($spacing-base * 1.25); transition: all 0.2s ease; &:hover, &:focus { - color: $gray-dark; + color: $color-button-text-hover; // Remove the underline/border &::after { @@ -65,7 +65,7 @@ // Count bubble .button__count { animation: fadein 0.2s ease; - margin-left: ($spacing-base / 2); + margin-left: ($spacing-base * 0.75); &::before { border: $arrow-size solid transparent; |