No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_modal.scss 323B

12345678910111213141516171819202122232425
  1. //
  2. // Modal
  3. //
  4. // Fluid modal
  5. .modal-fluid {
  6. .modal-dialog {
  7. margin-top: 0;
  8. margin-bottom: 0;
  9. }
  10. .modal-content {
  11. border-radius: 0;
  12. }
  13. }
  14. // Background color variations
  15. @each $color, $value in $theme-colors {
  16. .modal-#{$color} {
  17. @include modal-variant($value);
  18. }
  19. }