File size: 626 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 | @import "@automattic/typography/styles/variables";
.mini-carousel-block {
display: flex;
align-items: center;
margin-top: 16px;
@include breakpoint-deprecated( "<660px" ) {
flex-direction: column;
align-items: start;
}
&__content {
flex: 1;
margin: 0 1rem;
@include breakpoint-deprecated( "<660px" ) {
margin: 16px 0;
}
}
&__content-text {
margin: 0;
@include breakpoint-deprecated( "<660px" ) {
margin-top: 16px;
}
}
&__close-button {
border: 0 !important;
font-size: $font-body-extra-small !important;
}
&__close-button-icon {
vertical-align: middle;
margin-top: -4px;
}
}
|