Added buttons change

This commit is contained in:
MaxOvs19
2023-03-13 18:35:26 +03:00
parent b17386ba48
commit 93ebf0ed83
7 changed files with 189 additions and 110 deletions

View File

@@ -54,7 +54,7 @@ export const SliderWorkers = ({}) => {
return (
<div className="worker">
<img src={worker.avatar}></img>
<div>
<div className="worker-description">
<p>{worker.skils}</p>
<button className="worker__resume">Подробное резюме</button>
</div>

View File

@@ -115,5 +115,32 @@
margin: 0;
}
}
.slick-next,
.slick-prev {
display: none !important;
}
.worker {
flex-direction: column;
margin: 0;
align-items: center;
img {
margin: 0;
width: 50%;
}
p {
margin-top: 10px;
text-align: center;
}
.worker-description {
display: flex;
flex-direction: column;
align-items: center;
}
}
}
}