/
solj
/
Bitrixvue3jsApplication
Обзор
Документация
Войти
/
solj
/
Bitrixvue3jsApplication
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/app.css
62 строки
1 KB
AEGabrielyan
first commit
25 июл 2025, 08:12
25 июл 2025, 08:12
d658fed
Код
Авторство
О чём код?
/** BEGIN: стили модального окна **/ .modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 1050; display: flex; align-items: center; justify-content: center; } .modal-content { background: white; border-radius: 8px; padding: 20px; max-width: 600px; width: 100%; } .fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; } .fade-enter-from, .fade-leave-to { opacity: 0; } /** BEGIN: стили лоудера **/ .loader-overlay { position: fixed; inset: 0; background-color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; } .loader-spinner { width: 50px; height: 50px; border: 5px solid #ccc; border-top-color: #007bff; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; } .fade-enter-from, .fade-leave-to { opacity: 0; }