File size: 838 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 |
@import "@wordpress/base-styles/breakpoints";
.masterbar__login {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
margin: 20px 24px;
@include breakpoint-deprecated("<480px") {
margin: 20px;
}
// Absolute positioning is required here because the .layout__content calculates padding-top based on --masterbar-height.
position: absolute;
}
// Match (W) logo fill and stroke seen in /start
.masterbar__login-logo {
fill: var(--color-text);
stroke: var(--color-text);
}
.masterbar__login-back-link {
margin-left: 25px;
display: flex;
align-items: center;
font-size: $font-body-small;
font-weight: 600;
// Override link color
&,
&:visited,
&:hover,
&:focus {
color: var(--color-text);
}
// Hide "< Go back" link on mobile
@include breakpoint-deprecated("<480px") {
display: none;
}
}
|