-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
size change #63
Comments
@iBasit this is simple CSS, .sk-spinner {
transform: scale(2);
} |
@fxfactorial The "scale" wouldn't work, because it will lead to crucial loss of quality: @iBasit Instead, you could rewrite the spinner class, that you using,
And, of course, you should wrap this customization with another class so it won't apply for the every spinner in your app !UPDATES:
|
In case you use styled components: const LargeSpinner = styled(Spinner)`
& > div {
width: 140px;
height: 140px;
}
` |
How can we change the size to make it bigger?
Maybe few predefined sizes would be good (small, medium, large, x-large)?
The text was updated successfully, but these errors were encountered: