File size: 611 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 | @import "@automattic/onboarding/styles/mixins";
.featured-picks-buttons {
display: flex;
flex-direction: column;
width: 100%;
margin-bottom: 40px;
font-size: 0.875rem;
&__button {
display: block;
position: relative;
width: 100%;
height: 40px;
border-radius: 4px;
font-weight: 500;
text-align: center;
& + & {
margin-top: 20px;
}
&::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-radius: inherit;
box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}
}
@include break-small {
width: fit-content;
margin-top: 40px;
}
}
|