File size: 1,465 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
@import "@automattic/typography/styles/woo-commerce";
.jetpack-connect-woocommerce-loader__modal {
height: 100%;
width: 100%;
max-width: 100%;
max-height: 100%;
margin: 0;
animation: none;
.components-modal__header {
display: none;
}
}
.jetpack-connect-woocommerce-loader {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
padding-inline: 20px;;
.loader-hearticon {
position: relative;
top: 2px;
left: 2px;
}
h1 {
padding: 0;
margin: 58px 0 0 0;
font-size: rem(28px);
font-weight: 500;
@include breakpoint-deprecated( "<800px" ) {
font-size: $woo-font-title-small;
}
}
.jetpack-connect-loader-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 520px;
width: 100%;
}
.jetpack-connect-progress-bar {
width: 520px;
height: 0.25rem;
margin: 16px 0 16px 0;
@include breakpoint-deprecated( "<800px" ) {
width: 100%;
}
}
.jetpack-connect-progress-bar__container {
height: 4px;
}
.jetpack-connect-progress-bar__filler {
height: 100%;
}
.jetpack-connect-loader__paragraph {
font-size: $woo-font-body;
line-height: 24px;
color: #2f2f2f;
opacity: 0.8;
text-align: center;
@include breakpoint-deprecated( "<800px" ) {
font-size: $woo-font-body-small;
line-height: 20px;
}
img {
width: 1rem;
}
}
}
|