-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path_stepper.scss
42 lines (33 loc) · 1.49 KB
/
_stepper.scss
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@use './../type';
@use './../color';
@use './../spacing';
@use './../animation';
@use './../../functions/icons' as icon-fn;
@use '../../tokens/utilities';
@use '../../functions/tokens';
tokens.$default-map: utilities.$post-spacing;
$stepper-bar-height: tokens.get('utility-gap-4');
$stepper-bar-color: color.$gray-40;
$stepper-bar-fill-color: color.$yellow;
$stepper-indicator-size: tokens.get('utility-gap-40');
$stepper-indicator-border-width: tokens.get('utility-gap-4');
$stepper-indicator-border-color: rgb(var(--post-bg-rgb, 255 255 255));
$stepper-indicator-font-weight: type.$font-weight-bold;
$stepper-indicator-bg: color.$yellow;
$stepper-indicator-color: color.$black;
$stepper-indicator-check-size: tokens.get('utility-gap-24');
$stepper-indicator-transition:
color animation.$transition-base-timing,
background-color animation.$transition-base-timing;
$stepper-indicator-hover-color: color.$white;
$stepper-indicator-hover-bg: color.$black;
$stepper-indicator-future-bg: color.$gray-60;
$stepper-indicator-future-color: color.$white;
$stepper-indicator-check-icon: url('#{icon-fn.get-colored-svg-url('2105', $stepper-indicator-color)}');
$stepper-indicator-check-icon-size: $stepper-indicator-check-size;
$stepper-link-line-height: type.$line-height-sm;
$stepper-link-gap: tokens.get('utility-gap-8');
$stepper-link-spacing: tokens.get('utility-gap-16');
$stepper-link-color: color.$gray-60;
$stepper-link-current-color: color.$gray-80;
$stepper-link-current-font-weight: type.$font-weight-bold;