JSFiddle - React, Tailwind, and code Playground

by Miguel Sirna

HTML

<link rel="stylesheet" href="https://daneden.github.io/animate.css/animate.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<div class="container animated bounceIn">
  <button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button>
  <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
    <div class="modal-dialog modal-sm">
      <div class="modal-content">
        dsadsada
      </div>
    </div>
  </div>
</div>

CSS

.animated{
  animation-fill-mode: unset;
  -webkit-animation-fill-mode: unset;
  -moz-animation-fill-mode: unset;
  -ms-animation-fill-mode: unset;
}