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
Is it possible to custom the HTML of the next and prev button?
The text was updated successfully, but these errors were encountered:
I didn't find any prop or option for this. But you can use the CSS content property:
.vdp-datepicker header { .prev:after, .next:after { content: ""; width: 10px; height: 10px; display: inline-block; border-color: $primary-color; border-style: solid; border-width: 0.15em 0.15em 0 0; border-radius: 1px; position: absolute; top: calc(50% - 5px); left: calc(50% - 5px); margin: 0; } .prev:after { transform: rotate(-135deg); } .next:after { transform: rotate(45deg); } }
Sorry, something went wrong.
No branches or pull requests
Is it possible to custom the HTML of the next and prev button?
The text was updated successfully, but these errors were encountered: