38 lines
844 B
SCSS
38 lines
844 B
SCSS
@use "../../../styles/colors" as colors;
|
|
@use "../../../styles/variables" as vars;
|
|
@use "../../../styles/fonts" as fonts;
|
|
@use "../../../styles/screen" as screen;
|
|
|
|
.popular-requests {
|
|
background-color: colors.$blue-extra-light;
|
|
border-top: 1px solid colors.$border;
|
|
padding: 50px 50px 30px;
|
|
border-radius: 0 0 vars.$border-radius vars.$border-radius;
|
|
|
|
@include screen.mobile {
|
|
padding: vars.$space-xl !important;
|
|
padding-bottom: vars.$space-m !important;
|
|
}
|
|
|
|
&__title {
|
|
font-size: fonts.$font-size-xl1;
|
|
margin: 0;
|
|
padding-bottom: 50px;
|
|
font-weight: fonts.$font-regular;
|
|
|
|
@include screen.mobile {
|
|
padding-bottom: vars.$space-xl !important;
|
|
}
|
|
}
|
|
|
|
&__item {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
width: 50%;
|
|
|
|
@include screen.mobile {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
}
|