/
lyudmleb
/
final-project
Обзор
Документация
Войти
/
lyudmleb
/
final-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/shared/ui/Modal/Modal.css
48 строк
724 B
Liudmila Lebedeva
useProtectedActions
22 ноя 2025, 23:10
22 ноя 2025, 23:10
f98bb71
Код
Авторство
О чём код?
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 20px; border-radius: 8px; position: relative; max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto; } .modal-close { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; } .modal-close:focus { outline: 2px solid #005fcc; border-radius: 4px; } .modal-body { margin-top: 20px; }