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
@keyframes
.active({}))
.placeholder({}))
Keyframes for animation. Example:
const style = Style({ animation: `${rotate} 2s`, }); const rotate = style.keyframes({ "0%": { transform: "rotate(0deg)" }, "100%": { transform: "rotate(360deg)" } });
Active for active states. Example:
const style = Style({ ... }); style.active({ opacity: 0.5 });
Placeholder for input field styling. Example:
const style = Style({ ... }); style.placeholder({ color: "#EEE" });
The text was updated successfully, but these errors were encountered:
@fverloop you think you can make these?
Sorry, something went wrong.
Yes!
No branches or pull requests
@keyframes
..active({}))
method..placeholder({}))
method / styling.Keyframes for animation. Example:
Active for active states. Example:
Placeholder for input field styling. Example:
The text was updated successfully, but these errors were encountered: