placeholder button-base
Placeholder with the attributes for the base button
Example
scss
%button-base {
@include use-font('body', 'regular');
background-color: use-color(primary);
background-image: use-color(gradients, primary-hard);
border: 0;
border-radius: 8px;
box-shadow: $box-shadow-button;
box-sizing: border-box;
color: use-color(base, 'white');
display: inline-block;
height: auto;
line-height: unset;
margin: 0 0 13px;
padding: 15px;
text-align: center;
text-transform: uppercase;
width: 100%;
}
Used By
placeholder button-disabled
Placeholder with the attributes for the disabled button
Example
scss
%button-disabled {
background-color: use-color('grey', light-alt);
background-image: none;
border: solid 1px use-color('grey', light-alt);
color: use-color(base, 'white');
cursor: not-allowed;
}