Remove shadows on buttons

GET OUT OF HERE BOX SHADOWS.
This commit is contained in:
carljbowman 2018-07-16 18:05:10 -04:00
parent 5a067132b6
commit 201517a32d

View file

@ -8,31 +8,21 @@ $pass-bg: $ui-aqua;
display: inline-block;
margin: .5em 0;
border: 0;
border-radius: 5px;
box-shadow: 0 1px 1px $box-shadow-gray;
border-radius: .5rem;
background-color: $ui-blue;
cursor: pointer;
padding: .75em 1em;
padding: 1em 1.25em;
color: $type-white;
font-size: .8rem;
font-weight: bold;
/* USER BUTTON STATES */
&:hover {
box-shadow: 0 2px 2px $box-shadow-gray;
}
&:active {
box-shadow: inset 0 1px 2px $box-shadow-gray;
}
&:focus {
outline: none;
}
/* DATA BUTTON STATES */
&.white {
border-top: 1px inset $active-gray;
background-color: $base-bg;
color: $ui-blue;
}