/
TimurIsm
/
OpenEyes
Обзор
Документация
Войти
/
TimurIsm
/
OpenEyes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
front/src/css/Spinner.css
25 строк
522 B
IsmTimur
Initial commit: added backend (Express) and frontend (React Vite)
19 июн 2025, 18:32
19 июн 2025, 18:32
6cf6155
Код
Авторство
О чём код?
@import 'tailwindcss/base'; @import 'tailwindcss/components'; @import 'tailwindcss/utilities'; .spinner { border-top: 2px solid #000; border-bottom: 2px solid #000; border-radius: 50%; height: 128px; width: 128px; animation: spin 1s linear infinite; } .loading-container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }