23 lines
352 B
SCSS
Raw Normal View History

button,
a.button {
&.standard {
// NOTE - will define the larger standard buttons here and apply class where used.
&-small {
height: 20px;
padding: 5px 15px;
border: none;
border-radius: 4px;
text-transform: uppercase;
color: white;
background: $gab-small-cta-primary;
2019-09-16 19:31:30 -04:00
@include text-sizing(11px, 700, 11px);
}
}
}