zioinfo-mail/workspace/zioinfo-esn/esn/target/classes/static/css/spinners.css
DESKTOP-TKLFCPR\ython 371f77e7ab
Some checks failed
GUARDiA CI / Python Lint & Import Test (push) Has been cancelled
GUARDiA CI / Validate Install Scripts (push) Has been cancelled
GUARDiA CI / PR Validation Summary (push) Has been cancelled
fix(enhance-v4): APK QR 버그 수정 + 웹메일 라우터 수정
2026-06-02 20:23:55 +09:00

24 lines
376 B
CSS

/* Spinner 1 */
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner-1:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 56%;
left: 50%;
width: 40px;
height: 40px;
margin-top: -20px;
margin-left: -20px;
border-radius: 50%;
border: 4px solid #EAEAEA;
border-top-color: #fcb416;
animation: spinner 0.7s linear infinite;
}