Skip to content

Instantly share code, notes, and snippets.

@marcoskubis
Last active October 19, 2016 16:45
Show Gist options
  • Save marcoskubis/380071a6aa5c527985460256b9247222 to your computer and use it in GitHub Desktop.
Save marcoskubis/380071a6aa5c527985460256b9247222 to your computer and use it in GitHub Desktop.
Overrides bootstrap modal effect
.modal.fade .modal-dialog{
-webkit-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
opacity: 0;
transform: scale(1.08);
}
.modal.in .modal-dialog{
opacity: 1;
transform: scale(1);
}
@marcoskubis
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment