10 lines
134 B
CSS
Raw Normal View History

2023-10-15 12:58:35 +04:00
@media screen and (min-width: 576px) {
.people-row {
transition: .1s;
}
.people-row:hover {
transform: translateX(10px);
}
}