mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-20 12:04:31 +08:00
12 lines
365 B
CSS
12 lines
365 B
CSS
@layer components {
|
|
.sci-loader {
|
|
@apply flex m-auto h-[30px] w-[30px] animate-spin;
|
|
background: image-url("sn-loader.svg") center center no-repeat;
|
|
}
|
|
|
|
.sci-loader-inline {
|
|
@apply inline-block h-[1.2em] w-[1.2em] animate-spin;
|
|
background: image-url("sn-loader.svg") center center no-repeat;
|
|
background-size: 1.2em;
|
|
}
|
|
}
|