scss/buttons: make buttons semibold
This commit is contained in:
parent
df2ccd9f13
commit
030ef0707f
2 changed files with 3 additions and 1 deletions
|
@ -738,7 +738,8 @@ a.list-group-item:hover {
|
|||
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0), inset 0px -2px 0px rgba(0, 0, 0, 0.2);
|
||||
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
|
||||
background-color: #eeeeec;
|
||||
color: #111; }
|
||||
color: #111;
|
||||
font-weight: 600; }
|
||||
.btn:hover, .btn:active, .btn:focus, .btn:not(.disabled):not(:disabled):hover, .btn:not(.disabled):not(:disabled):active, .btn:not(.disabled):not(:disabled):focus {
|
||||
background-color: white;
|
||||
color: #111; }
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
box-shadow: $large-shadow, $inset-shadow;
|
||||
text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
|
||||
@include button-color($color-light, #111);
|
||||
font-weight: 600;
|
||||
|
||||
&:hover {
|
||||
box-shadow: $narrow-shadow, $inset-shadow;
|
||||
|
|
Reference in a new issue