/ client / cvinsight / src / index.css
index.css
 1  @tailwind base;
 2  @tailwind components;
 3  @tailwind utilities;
 4  
 5  @keyframes spin {
 6    to {
 7      transform: rotate(360deg);
 8    }
 9  }
10  
11  .animate-spin {
12    animation: spin 1s linear infinite;
13  }