Skip to content

Instantly share code, notes, and snippets.

@digitallysavvy
Last active May 9, 2019 16:48
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 digitallysavvy/9c884a1d93d64d37ce5b794271d05c2a to your computer and use it in GitHub Desktop.
Save digitallysavvy/9c884a1d93d64d37ce5b794271d05c2a to your computer and use it in GitHub Desktop.
Group Video Chat buttons
<div id="screen-share-btn-container" class="col-2 float-right text-right mt-2">
<button id="screen-share-btn" type="button" class="btn btn-lg">
<i id="screen-share-icon" class="fas fa-share-square"></i>
</button>
</div>
<div id="buttons-container" class="row justify-content-center mt-3">
<div class="col-md-2 text-center">
<button id="mic-btn" type="button" class="btn btn-block btn-dark btn-lg">
<i id="mic-icon" class="fas fa-microphone"></i>
</button>
</div>
<div class="col-md-2 text-center">
<button id="video-btn" type="button" class="btn btn-block btn-dark btn-lg">
<i id="video-icon" class="fas fa-video"></i>
</button>
</div>
<div class="col-md-2 text-center">
<button id="exit-btn" type="button" class="btn btn-block btn-danger btn-lg">
<i id="exit-icon" class="fas fa-phone-slash"></i>
</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment