Browse Source

refactor(theme-shared): set right and bottom inputs 30px as default

pull/2613/head
mehmet-erim 6 years ago
parent
commit
bf6426246a
  1. 8
      npm/ng-packs/packages/theme-shared/src/lib/components/toast-container/toast-container.component.ts

8
npm/ng-packs/packages/theme-shared/src/lib/components/toast-container/toast-container.component.ts

@ -13,16 +13,16 @@ export class ToastContainerComponent implements OnInit {
toasts = [] as Toaster.Toast[];
@Input()
top: number;
top: string;
@Input()
right: number;
right: string = '30px';
@Input()
bottom: number;
bottom: string = '30px';
@Input()
left: number;
left: string;
@Input()
toastKey: string;

Loading…
Cancel
Save