10 lines
134 B
CSS
10 lines
134 B
CSS
@media screen and (min-width: 576px) {
|
|
.people-row {
|
|
transition: .1s;
|
|
}
|
|
|
|
.people-row:hover {
|
|
transform: translateX(10px);
|
|
}
|
|
}
|