/
watchadoing
/
CatPinterest
Обзор
Документация
Войти
/
watchadoing
/
CatPinterest
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
front/src/components/ui/Post/Post.module.css
39 строк
716 B
Andrey Isaev
feat: add infinite gallery
18 июн 2025, 05:55
18 июн 2025, 05:55
824effa
Код
Авторство
О чём код?
.post { width: 225px; height: 225px; display: flex; flex-direction: column; background-color: var(--post-background-color); transform-origin: center; transition: transform 0.15s ease-in-out; z-index: 2; align-self: center; justify-self: center; position: relative; } .postImage { max-height: 100%; width: 100%; z-index: 0; } .postDescription { display: none; } .post:hover { transform: scale(1.14); box-shadow: 0 9px 18px 0 rgba(0, 0, 0, 0.18), 0 6px 5px 0 rgba(0, 0, 0, 0.24); } .post:hover .postDescription { width: 225px; position: absolute; inset-inline-end: 15px; inset-block-end: 15px; z-index: 3; padding: 4px; display: flex; justify-content: flex-end; }