File size: 1,101 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 |
@import "@automattic/onboarding/styles/mixins";
@import "@wordpress/base-styles/breakpoints";
.continue-as-user {
display: flex;
flex-direction: column;
animation: 1s appear 0s ease-in;
color: var(--color-text-subtle);
font-size: $font-body-small;
text-align: center;
height: calc(65vh - 47px); /* The values here are set so that the Not-you line gets pushed to the bottom of the screen on mobile */
margin: 48px auto 0;
position: relative;
max-width: 400px;
min-height: 260px;
@include break-medium {
height: 48vh;
}
.continue-as-user__user-info {
height: auto;
align-self: flex-start;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.continue-as-user__gravatar {
display: inline;
border: 1px solid #a7aaad;
}
.continue-as-user__continue-button {
min-width: 100%;
margin-block: 13px;
}
.continue-as-user__not-you {
display: block;
bottom: 0;
position: absolute;
text-align: center;
width: 100%;
}
}
.layout:not(.is-grav-powered-client) {
.continue-as-user {
height: auto;
}
.continue-as-user__not-you {
position: static;
}
}
|