Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions resources/sass/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ button {
display: inline-block;
font-weight: 400;
outline: 0;
border-radius: 2px;
border-radius: 4px;
cursor: pointer;
transition: background-color ease-in-out 120ms,
filter ease-in-out 120ms,
box-shadow ease-in-out 120ms;
box-shadow: none;
background-color: var(--color-primary);
color: #FFF;
text-transform: uppercase;
border: 1px solid var(--color-primary);
vertical-align: top;
&:hover, &:focus, &:active {
Expand Down Expand Up @@ -52,10 +51,11 @@ button {
border: 1px solid;
@include lightDark(border-color, #CCC, #666);
&:hover, &:focus, &:active {
@include lightDark(color, #444, #BBB);
border: 1px solid #CCC;
box-shadow: none;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
background-color: #F2F2F2;
@include lightDark(background-color, #f2f2f2, #555);
@include lightDark(background-color, #f8f8f8, #444);
filter: none;
}
&:active {
Expand Down