tailwind spinner example
<div class=" flex justify-center items-center">
<div class="animate-spin rounded-full h-32 w-32 border-b-2 border-gray-900"></div>
</div>
tailwind spinner example
<div class=" flex justify-center items-center">
<div class="animate-spin rounded-full h-32 w-32 border-b-2 border-gray-900"></div>
</div>
tailwind spinner
<style>
.loader {
border-top-color: #3498db;
-webkit-animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<div class=" flex justify-center items-center">
<div class="loader ease-linear rounded-full border-8 border-t-8 border-gray-200 h-32 w-32"></div>
</div>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us