_employer.scss
573 Bytes
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
.employer {
padding-bottom: 50px;
@media (min-width: $laptop) {
padding-bottom: 100px;
}
.swiper {
margin-top: 20px;
@media (min-width: $laptop) {
margin-top: 30px;
}
}
&__item {
display: flex;
flex-direction: column;
gap: 30px;
a {
display: flex;
flex-direction: column;
align-items: center;
}
img {
width: 100%;
aspect-ratio: 295/98;
object-fit: contain;
}
}
&__more {
height: 38px;
margin-top: 20px;
@media (min-width: $laptop) {
width: 250px;
margin: 0 auto;
height: 44px;
margin-top: 40px;
}
}
}