Skip to content

Commit

Permalink
Fix button hover/margin (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenyboxer authored and dvdschwrtz committed Jan 4, 2018
1 parent 466e3da commit 0724d26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/components/Button/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand All @@ -35,7 +35,7 @@
background-color: transparent;
border-color: #999;
color: #000;
&:hover:not[disabled] {
&:hover:not([disabled]) {
background-color: transparent;
border-color: #999;
}
Expand Down
2 changes: 1 addition & 1 deletion app/styles/main.global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ input {
margin-right: 10px;
}
.walletName {
width: 20%;
width: 25%;
}
.walletKey {
width: 50%;
Expand Down

0 comments on commit 0724d26

Please sign in to comment.