/
dedaMazai
/
TestServer
Обзор
Документация
Войти
/
dedaMazai
/
TestServer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/ui/Modal/Modal.module.scss
40 строк
666 B
Andrey Chipizubov
fix
23 апр 2023, 17:32
23 апр 2023, 17:32
cc424e9
Код
Авторство
О чём код?
.Modal { position: fixed; top: 0; bottom: 0; right: 0; left: 0; opacity: 0; pointer-events: none; z-index: 100; color: var(--primary-color); display: flex; justify-content: center; align-items: center; } .content { padding: 20px; border-radius: 12px; background: var(--bg-color); transition: 0.3s transform; transform: scale(0.5); max-width: 60%; z-index: var(--modal-z-index); } .opened { pointer-events: auto; opacity: 1; z-index: var(--modal-z-index); .content { transform: scale(1); } } .isClosing { .content { transform: scale(0.2); } }