mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 20:12:20 +00:00
17 lines
350 B
CSS
17 lines
350 B
CSS
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.spinner {
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid var(--input-placeholder-rest);
|
|
border-top: 2px solid var(--neutral-foreground-rest);
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|