17 lines
239 B
CSS
17 lines
239 B
CSS
@import "tailwindcss";
|
|
|
|
@layer components {
|
|
.test-loading {
|
|
@apply w-20 h-20 bg-gray-300 rounded-full animate-spin;
|
|
}
|
|
}
|
|
|
|
#ai-bot-root {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: -100px;
|
|
z-index: 9999;
|
|
}
|