blob: a387260843fa7e586c2875935f16f0e59d9ed069 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | // Remove Focus Boxes
select:focus {
  outline: $select-focus;
}
button:focus {
  outline: none;
  background-color: $button-background-focus;
}
label {
  font-size: $label-font-size;
  color: $input-label-color;
}
@import 'input-fields';
@import 'radio-buttons';
@import 'checkboxes';
@import 'switches';
@import 'select';
@import 'file-input';
@import 'range';
 |