d93c92e4f5
* add NavHeader component * use NavHeader in SplashPage component and application.hbs * let download button take a block * add RadialProgress component * use RadialProgress in ShamirFlow component * style up the RadialProgress component * update ember-basic-dropdown, ember-basic-dropdown-hover * rework operation token generation workflow * directly depend on ember-maybe-in-element
13 lines
296 B
SCSS
13 lines
296 B
SCSS
.radial-progress {
|
|
transform: rotate(-90deg) translateX(-20%);
|
|
}
|
|
.radial-progress circle {
|
|
stroke: rgba($grey-light, 0.5);
|
|
transition: stroke-dashoffset $speed ease-in;
|
|
will-change: stroke-dashoffset;
|
|
stroke-linecap: round;
|
|
}
|
|
.radial-progress circle.progress-fill {
|
|
stroke: $green;
|
|
}
|