33 lines
567 B
SCSS
33 lines
567 B
SCSS
@use "variables" as vars;
|
|
|
|
.services {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
// &__title {
|
|
// }
|
|
|
|
&__list {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
|
|
.service {
|
|
width: 45%;
|
|
align-self: center;
|
|
margin: 8px 0;
|
|
|
|
h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
&__text {
|
|
padding: 2px;
|
|
line-height: 24px;
|
|
background: vars.$color-bg0_h;
|
|
}
|
|
}
|
|
}
|
|
}
|