aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/src/Common/spinner.module.css
diff options
context:
space:
mode:
authorNick Coutsos <[email protected]>2022-04-15 12:20:05 -0400
committerNick Coutsos <[email protected]>2022-04-15 12:20:05 -0400
commitd38567dfe277d9eacc8b831e72b82afd75bf728e (patch)
tree362d5ab47d3a6d06d7db531a6096e35e8465a290 /app/src/Common/spinner.module.css
parent9ee6b5db661e22c559a0a6b8fcddb51552b7caf5 (diff)
downloadkeymap-editor-d38567dfe277d9eacc8b831e72b82afd75bf728e.tar.gz
keymap-editor-d38567dfe277d9eacc8b831e72b82afd75bf728e.zip
Start porting frontend to react
Diffstat (limited to 'app/src/Common/spinner.module.css')
-rw-r--r--app/src/Common/spinner.module.css13
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