Skip to content

Instantly share code, notes, and snippets.

@tyrw
Created January 31, 2022 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyrw/f90057146ce26018c9106c09007802d3 to your computer and use it in GitHub Desktop.
Save tyrw/f90057146ce26018c9106c09007802d3 to your computer and use it in GitHub Desktop.
Add a custom button color for a Userfront form
[id|="userfront"] .el-button.el-button--primary,
[id|="userfront"] .el-button.el-button--primary:active {
border-color: green;
background-color: green;
}
[id|="userfront"] .el-button.el-button--primary:hover,
[id|="userfront"] .el-button.el-button--primary:focus {
border-color: lightgreen;
background-color: lightgreen;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment