blob: 02b0caeaa5ebfaf761028255133ed888a6c57d35 [file] [log] [blame]
Yoshie Muranaka996d2d52019-12-30 09:06:45 -08001.btn {
2 font-weight: $headings-font-weight;
3 svg {
4 vertical-align: sub;
5 margin-left: $spacer / 2;
6 }
7}
8
9.btn-primary {
10 fill: $white;
11}
12
13.btn-secondary {
14 fill: $white;
15 @extend .btn-secondary-dark;
16}
17
18.btn-link {
19 fill: $primary;
20 text-decoration: none !important;
21 &:focus {
22 box-shadow: $btn-focus-box-shadow;
23 }
24 &:hover {
25 fill: darken($primary, 15%);
26 }
27}