Yoshie Muranaka | 996d2d5 | 2019-12-30 09:06:45 -0800 | [diff] [blame] | 1 | .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 | } |