diff options
Diffstat (limited to 'app/src/Common/spinner.module.css')
-rw-r--r-- | app/src/Common/spinner.module.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/Common/spinner.module.css b/app/src/Common/spinner.module.css new file mode 100644 index 0000000..63c444b --- /dev/null +++ b/app/src/Common/spinner.module.css @@ -0,0 +1,13 @@ +.spinner { + display: inline-block; + text-align: center; +} +.icon { + display: inline-block; + animation: spin 1s linear infinite; +} + +@keyframes spin { + from { transform: rotate(0deg); } + to { transform: rotate(360deg); } +}
\ No newline at end of file |