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.

_modals.scss 390B

1234567891011121314151617181920212223
  1. @mixin modal-variant($background) {
  2. .modal-title {
  3. color: color-yiq($background);
  4. }
  5. .modal-header,
  6. .modal-footer {
  7. border-color: rgba(color-yiq($background), .075);
  8. }
  9. .modal-content {
  10. background-color: $background;
  11. color: color-yiq($background);
  12. .heading {
  13. color: color-yiq($background);
  14. }
  15. }
  16. .close {
  17. &>span:not(.sr-only) {
  18. color: $white;
  19. }
  20. }
  21. }