We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to make it closer to the top right corner. By default the positioning is
` &.top-right { top: 10%; right: 7%; }`
I want to make it
&.top-right { top: 2%; right: 2%; }
but I am struggling with overwriting the code.
The text was updated successfully, but these errors were encountered:
I had the same issue, I was trying to use scoped styles in a component but I believe as the toast is not part of the component these are not applied.
You can set the containerClass on your toast and then style in some global css file.
this.$toasted.show(x.response.data, { containerClass: "toastContainer", });
.toasted-container.toastContainer.top-right { top: 0%; right: 1%; }
Sorry, something went wrong.
No branches or pull requests
I want to make it closer to the top right corner.
By default the positioning is
I want to make it
but I am struggling with overwriting the code.
The text was updated successfully, but these errors were encountered: