28 lines
442 B
SCSS
28 lines
442 B
SCSS
.Slider {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
margin-bottom: rem(40px);
|
|
padding: 0 rem(20px) 0!important;
|
|
|
|
@include iftablet {
|
|
padding: unset;
|
|
}
|
|
|
|
@include ifdesktop {
|
|
margin-bottom: rem(80px);
|
|
}
|
|
}
|
|
|
|
.Slide {
|
|
display: flex!important;
|
|
justify-content: center;
|
|
|
|
.Image {
|
|
cursor: pointer;
|
|
width: auto;
|
|
height: rem(400px);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
} |