summaryrefslogtreecommitdiff
path: root/src/assets/styles/_buttons.scss
blob: 2f961e003881d8b49c3cd01b63fba119961692f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.btn {
  font-weight: $headings-font-weight;
  svg {
    vertical-align: sub;
    margin-left: $spacer / 2;
  }
}

.btn-primary {
  fill: currentColor;
}

.btn-secondary {
  fill: currentColor;
}

.btn-link {
  fill: $primary;
  text-decoration: none !important;
  &:focus {
    box-shadow: $btn-focus-box-shadow;
  }
  &:hover {
    fill: darken($primary, 15%);
  }
}