mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-02-01 13:17:45 +02:00
fixed loader not shown
This commit is contained in:
parent
935bd34c5b
commit
fdeef278f1
@ -17,4 +17,27 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.loader {
|
||||
display: inline-block;
|
||||
border: 5px solid lightgrey;
|
||||
border-radius: 50%;
|
||||
border-top: 5px solid #3498db;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-animation: spin 2s linear infinite;
|
||||
animation: spin 2s linear infinite;
|
||||
box-sizing: unset;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
0% { -webkit-transform: rotate(0deg); }
|
||||
100% { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user