Compact UI is an open-source, cross-platform component library that give designers and developers a free hand to create engaging product experiences.
<link rel="stylesheet" href="https://compact-ui.netlify.app/stylesheets/style.css">
OR
@import url('https://compact-ui.netlify.app/stylesheets/style.css');
Copy-paste the given stylesheet link before all other stylesheets to load our CSS.
https://compact-ui.netlify.app/
- Fork this repo
- Clone the repo using
git clone <repo-link>
- Make a new branch using
git checkout -b <branch-name>
- After making changes, add your files using
git add .
- Commit your files for push using
git commit -m "commit-message"
- Push these changes to your fork using
git push origin <branch-name>
- Create a pull request to the main repo.
- Make sure your branches are up to date with the master branch of the main repo.
- Add the upstream repo by using
git remote add upstream <upstream-repo-link>
- Fetch the latest commit details using
git fetch upstream
and merge them usinggit merge upstream/master master