sheetaki/src/Features/Loader/Loader.css

17 lines
402 B
CSS
Raw Normal View History

2021-05-06 23:51:42 +00:00
/* --------loader modal css--------- */
.loader {
/* background-color: #b90e0a; */
border: 16px solid #efefef; /* Light grey */
border-top: 16px solid #E18874; /* Blue */
border-radius: 50%;
width: 20px;
height: 20px;
margin: auto;
margin-bottom: 10px;
animation: spin .7s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}