/
helloWrld
/
test
Обзор
Документация
Войти
/
helloWrld
/
test
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/components/Spinner/Spinner.module.scss
26 строк
441 B
babinm1h
test
09 дек 2023, 18:02
09 дек 2023, 18:02
ca48ad1
Код
Авторство
О чём код?
.loader { width: 48px; height: 48px; border: 5px solid blue; border-bottom-color: transparent; border-radius: 50%; display: inline-block; box-sizing: border-box; animation: rotation 1s linear infinite; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .wrapper { width: 100%; display: flex; align-items: center; padding: 20px; justify-content: center; }