File size: 630 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 | @import "@automattic/typography/styles/fonts";
.migration-in-progress {
height: calc(100svh - 120px);
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
box-sizing: border-box;
p {
margin: 0;
}
}
.migration-in-progress__title {
font-family: $brand-serif;
font-weight: 400;
font-size: 1.75rem;
line-height: 2;
color: var(--studio-gray-100);
margin: 0;
}
.migration-in-progress__loading {
height: 20px;
margin-top: 32px;
}
// Remove extra top spacing form the loading bar
.migration-in-progress__loading > div {
top: 0;
}
|