koel/resources/assets/css/vendor/nprogress.pcss

26 lines
553 B
Text
Raw Normal View History

2022-04-15 14:24:30 +00:00
/**
* A stripped-down style of NProgress.
* Heck, rstacruz (the author) even said:
* > The included CSS file is pretty minimal... in fact, feel free to scrap it and make your own!
*/
#nprogress {
2024-04-04 22:20:42 +00:00
@apply pointer-events-none;
2022-04-15 14:24:30 +00:00
.bar {
2024-04-04 22:20:42 +00:00
@apply hidden;
2022-04-15 14:24:30 +00:00
}
/* Fancy blur effect */
.peg {
2024-04-04 22:20:42 +00:00
@apply hidden;
2022-06-10 10:47:46 +00:00
}
.spinner {
2024-04-04 22:20:42 +00:00
@apply block fixed z-[9999] top-[15px] right-[13px];
2022-06-10 10:47:46 +00:00
}
.spinner-icon {
2024-04-04 22:20:42 +00:00
@apply w-[18px] aspect-square border-2 border-transparent border-t-k-highlight border-l-k-highlight rounded-full animate-spin;
2022-04-15 14:24:30 +00:00
}
}