File size: 568 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 |
@import "calypso/assets/stylesheets/shared/mixins/breakpoints";
.back-button {
margin: 0;
position: fixed;
top: calc(var(--masterbar-height) + 20px);
left: 0;
z-index: z-index(".masterbar", ".reader-back");
.button.is-compact.is-borderless {
padding: 20px 8px 16px;
@include breakpoint-deprecated( ">660px" ) {
padding: 18px 40px 18px 10px;
}
}
@include breakpoint-deprecated( "<660px" ) {
display: none;
}
}
.back-button__example {
.back-button {
position: relative;
top: 0;
.button.is-compact.is-borderless {
padding: 0;
}
}
}
|