From 0724d263133fd987009f849a61151a5e24d6763b Mon Sep 17 00:00:00 2001 From: Evgeny Boxer Date: Thu, 4 Jan 2018 17:05:54 +1100 Subject: [PATCH] Fix button hover/margin (#463) --- app/components/Button/Button.scss | 8 ++++---- app/styles/main.global.scss | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/Button/Button.scss b/app/components/Button/Button.scss index 3fb885a2f..bf17ea798 100644 --- a/app/components/Button/Button.scss +++ b/app/components/Button/Button.scss @@ -9,14 +9,14 @@ background-color: $default-button; cursor: pointer; - + .button { + + .button, + a .button { margin-left: 10px; } &.primary { background-color: $default-button; border-color: $default-button; - &:hover:not[disabled] { + &:hover:not([disabled]) { background-color: $default-button-hover; border-color: $default-button-hover; } @@ -25,7 +25,7 @@ &.secondary { background-color: $dark-button; border-color: $dark-button; - &:hover:not[disabled] { + &:hover:not([disabled]) { background-color: $dark-button-hover; border-color: $dark-button-hover; } @@ -35,7 +35,7 @@ background-color: transparent; border-color: #999; color: #000; - &:hover:not[disabled] { + &:hover:not([disabled]) { background-color: transparent; border-color: #999; } diff --git a/app/styles/main.global.scss b/app/styles/main.global.scss index 7dc5d749d..43f2a2ac9 100644 --- a/app/styles/main.global.scss +++ b/app/styles/main.global.scss @@ -72,7 +72,7 @@ input { margin-right: 10px; } .walletName { - width: 20%; + width: 25%; } .walletKey { width: 50%;