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
Hi, is it possible to include placeholder support as shown below? Current workaround is to use javascript and target each input to inject placeholder.
The text was updated successfully, but these errors were encountered:
@yaphanlong Hi, I will research it, but it seems that this placeholder will not be native for the HTML.
Sorry, something went wrong.
@AlexMiniApps @yaphanlong It would be actually possible by
has-value
span { &.has-value { &:after { content: ""; position: absolute; height: 8px; width: 8px; top: calc(50% - 4px); left: calc(50% - 4px); background-image: radial-gradient( circle at center, lightgray 5px, transparent 5px ); border-radius: 100%; background-size: 20px; background-position: top center, bottom center; background-repeat: no-repeat; } } }
I can make a pull-request if you wish
@rbalet Thanks for the suggestion
No branches or pull requests
Hi, is it possible to include placeholder support as shown below? Current workaround is to use javascript and target each input to inject placeholder.
The text was updated successfully, but these errors were encountered: