File size: 1,115 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 | @import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
@import "@wordpress/base-styles/variables";
.a4a-request-wp-admin-access {
display: flex;
flex-direction: column;
@include break-xlarge {
flex-direction: row;
background: var(--color-neutral-0);
border-radius: 4px;
}
}
.a4a-request-wp-admin-access__content {
display: flex;
flex-direction: column;
justify-content: center;
padding: 32px 8px;
@include break-xlarge {
padding: 32px;
}
.a4a-request-wp-admin-access__heading {
@include heading-x-large;
padding-block-end: 16px;
}
.a4a-request-wp-admin-access__description {
@include body-large;
padding-block-end: 24px;
}
}
.a4a-request-wp-admin-access__illustration {
display: flex;
@include break-xlarge {
justify-content: flex-end;
width: 50%;
}
}
a.components-button.a4a-request-wp-admin-access__learn-more-button {
@include body-medium;
color: var(--color-primary);
justify-content: flex-start;
background: none;
text-decoration: none;
&:hover {
color: var(--color-primary-60);
}
svg {
margin-inline-start: 4px;
}
}
|