Fix null modal-content-color in modal.scss (#39977)

Identified that $modal-content-color was set to null, which could lead
to display issues in React Bootstrap Modals. Changed the value to --#{$prefix}body-color
to ensure consistency and correct color application in modal components.
This commit is contained in:
Somi Park 2025-04-03 15:49:33 +09:00 committed by GitHub
parent 51e7519638
commit ed2bf138a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1507,7 +1507,7 @@ $modal-dialog-margin-y-sm-up: 1.75rem !default;
$modal-title-line-height: $line-height-base !default;
$modal-content-color: null !default;
$modal-content-color: var(--#{$prefix}body-color) !default;
$modal-content-bg: var(--#{$prefix}body-bg) !default;
$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;
$modal-content-border-width: var(--#{$prefix}border-width) !default;