14 lines
187 B
CSS
14 lines
187 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--animate-spin-slow: spin 8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |