Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 800 Bytes

CONTRIBUTION.md

File metadata and controls

35 lines (23 loc) · 800 Bytes

Contributing

If you have a new button style you would like to add or any fixes you want to contribute, be sure to follow this guideline.

Instructions

  1. Fork the repository.

  2. To make changes to the existing buttons or to add new buttons edit index.html and assets/css/index.css

  3. to add icon add your icon in assets/css/icon folder

Create Pull Request

  1. Create a new branch:
git branch new-branch 
  1. Checkout new branch:
git checkout new-branch
  1. Add, commit and push your changes to the new branch
git add .
git commit -m "changes"
git push origin new-branch
  1. Go to your forked repository and press the “New pull request” button.

  2. Once the pull request is reviewed and approved, it will be merged.