File size: 716 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 |
@import "@wordpress/base-styles/variables";
@import "@automattic/typography/styles/fonts";
body {
background-color: var(--studio-white);
}
.jetpack-app__plans {
.jetpack-app__plans-header {
display: block;
overflow: auto;
.formatted-header__title,
.formatted-header__subtitle {
max-width: unset;
}
h1 {
font-family: $brand-serif;
font-size: $font-headline-small;
margin-bottom: $grid-unit-20;
}
p {
font-size: $font-body;
color: var(--color-text-subtle);
text-align: center;
padding: 0 $grid-unit-20;
margin-bottom: 0;
}
}
.jetpack-app__plans-loading {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
}
|