Skip to content

Commit

Permalink
Fixed Button style
Browse files Browse the repository at this point in the history
  • Loading branch information
dersimoezdag committed Jul 2, 2020
1 parent 2851427 commit 47b7266
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [0.3.5] - 2020-07-01

### Fixed

- Button hover style

## [0.3.5] - 2020-07-01

### Added

- Floating Button added.
Expand Down
38 changes: 19 additions & 19 deletions src/scss/klaro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,25 +82,6 @@ $green: #01440c;

cursor: pointer;

&.is-active,
&:hover,
&:active {
background-color: $button-background-active;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
}
&:hover,
&:focus {
background-color: $button-background-hover;
}
&:active {
background-color: $button-background-active;
}

&:disabled {
opacity: 0.5;
}

&.btn-sm {
padding: 0.4em;
font-size: 1em;
Expand All @@ -122,6 +103,25 @@ $green: #01440c;
margin-left: 0.5em;
margin-right: 0;
}

&.is-active,
&:hover,
&:active {
background-color: $button-background-active;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
}
&:hover,
&:focus {
background-color: $button-background-hover;
}
&:active {
background-color: $button-background-active;
}

&:disabled {
opacity: 0.5;
}
}
}

Expand Down

0 comments on commit 47b7266

Please sign in to comment.