stijl
stijl copied to clipboard
Missing CSS Styling Properties
- No
@keyframes. - No
.active({}))method. - No
.placeholder({}))method / styling.
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"
});
@fverloop you think you can make these?
Yes!