mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 04:14:18 +00:00
30 lines
567 B
SCSS
30 lines
567 B
SCSS
@import '../../../styles/utilities';
|
|
|
|
.loadingCommon:empty {
|
|
@apply bg-white;
|
|
border-radius: 50%;
|
|
border: .7rem solid var(--primary-lightest);
|
|
border-top: .7rem solid var(--primary);
|
|
animation: spin 2s linear infinite;
|
|
margin: auto;
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
&.small {
|
|
height: 5rem;
|
|
width: 5rem;
|
|
}
|
|
|
|
&.default {
|
|
height: 7rem;
|
|
width: 7rem;
|
|
}
|
|
|
|
&.large {
|
|
height: 10rem;
|
|
width: 10rem;
|
|
}
|
|
} |