Skip to content

Commit d92dc97

Browse files
Merge pull request #341 from FiestaRuless/bugfix/ReAddOverlayInner
feat Add css class "m-overlay__inner"
2 parents 85c1636 + 9e2b441 commit d92dc97

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## Unreleased
99

10+
## [6.1.4] - 2024-12-30
11+
12+
### Fixed
13+
14+
- `ngx-layout`: Add css class "m-overlay\_\_inner" to section in ModalOverlayComponent.
15+
1016
## [6.1.3] - 2024-09-09
1117

1218
### Fixed
@@ -20,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2026
- `ngx-pagination`: Add strongly typed return type for forChild() in ItemCounterModule, which is necessary in Angular 18.
2127

2228
### Changed
29+
2330
- `ngx-calendar`: Changed ModuleWithProviders<any> to specific module in forChild()
2431
- `ngx-forms`: Changed ModuleWithProviders<any> to specific module in forChild()
2532
- `ngx-pagination`: Changed ModuleWithProviders<any> to specific module in forChild()

packages/ngx-layout/src/lib/modal/components/modal-overlay/modal-overlay.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ModalAbstract } from '../../classes/modal.abstract';
55
@Component({
66
selector: 'aui-modal-overlay',
77
template: `
8-
<section>
8+
<section class="m-overlay__inner">
99
<ng-content></ng-content>
1010
</section>
1111
`,

0 commit comments

Comments
 (0)