armanty-quests/src/sass/parts/adding-service.scss
2021-04-04 02:03:38 +03:00

60 lines
932 B
SCSS

.adding-service {
padding-bottom: 60px;
text-align: center;
.extras {
> div {
display: flex;
justify-content: center;
}
.wrapper {
display: flex;
flex-direction: column;
max-width: 170px;
margin-bottom: 20px;
.adding-service__image {
min-height: 136px;
img {
max-width: 100%;
max-height: 120px;
}
}
}
span {
color: #000000;
font-size: 18px;
font-family: 'Museo Thin', sans-serif;
line-height: 1.15;
text-align: center;
}
}
button {
margin-top: 65px;
}
}
@media screen and (max-width: 768px) {
.adding-service {
.extras {
justify-content: center !important;
}
}
}
@media screen and (max-width: 576px) {
.adding-service {
padding: 20px 0;
background-color: #ffffff;
}
.adding-service .extras div img {
min-height: auto;
}
}