We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9066dee commit a359263Copy full SHA for a359263
projects/igniteui-angular/src/lib/toast/toast.component.ts
@@ -166,13 +166,14 @@ export class IgxToastComponent extends IgxNotificationsDirective implements OnIn
166
this._positionSettings = settings;
167
}
168
169
+ private _position: IgxToastPosition = 'bottom';
170
+
171
private _positionSettings: PositionSettings = {
172
horizontalDirection: HorizontalAlignment.Center,
- verticalDirection: this.calculatePosition(),
173
+ verticalDirection: VerticalAlignment.Bottom,
174
openAnimation: useAnimation(fadeIn),
175
closeAnimation: useAnimation(fadeOut),
176
};
- private _position: IgxToastPosition = 'bottom';
177
178
/**
179
* Gets the nativeElement of the toast.
0 commit comments