File size: 767 Bytes
1e92f2d | 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 | @import "@automattic/onboarding/styles/base-styles";
@import "@automattic/onboarding/styles/mixins";
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.transfer__step-wrapper {
.step-wrapper__content {
padding: 1em;
max-width: 540px;
text-align: center;
margin: 32vh auto;
}
}
$progress-duration: 800ms;
.transfer__progress-bar {
position: relative;
overflow: hidden;
height: 6px;
margin-top: 1em;
background: var(--studio-gray-10);
--progress: 0;
&::before {
background: var(--studio-blue-40);
transform: translateX(calc(-100% * min(1 - var(--progress, 0), 1)));
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
transition: transform $progress-duration ease-out;
}
}
|