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