blob: 2f961e003881d8b49c3cd01b63fba119961692f3 [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 {
Derick Montague7f970a12020-03-02 17:56:09 -060010 fill: currentColor;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080011}
12
13.btn-secondary {
Derick Montague7f970a12020-03-02 17:56:09 -060014 fill: currentColor;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080015}
16
17.btn-link {
18 fill: $primary;
19 text-decoration: none !important;
20 &:focus {
21 box-shadow: $btn-focus-box-shadow;
22 }
23 &:hover {
24 fill: darken($primary, 15%);
25 }
26}