Edit
/* scss/wrapper-section/_section.scss */
.section {
background-color: $white;
box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
border-radius: 8px;
margin-bottom: 20px;
.section__body {
padding: 20px 24px;
}
}
.section__head {
padding: 20px 24px;
box-shadow: inset 0px -1px 0px #E4E7EC;
display: flex;
align-items: center;
justify-content: space-between;
@media (max-width: $screen-md) {
flex-direction: column;
align-items: flex-start;
}
.info {
@media (max-width: $screen-md) {
margin-bottom: 10px;
}
.title {
color: $gray-900;
@extend .text-lg;
@extend .weight-m;
&:not(:last-child) {
margin-bottom: 4px;
}
}
.desc {
color: $gray-500;
@extend .text-sm;
}
}
.btns {
display: flex;
align-items: center;
@include dir-margin-left(12px);
@media (max-width: $screen-md) {
@include dir-margin-left(0);
}
}
}