Base solution for your next web application
Open Closed

Padding missing on right side of notifications on 6.8.0.0 #6901


User avatar
0
tom.ohle created

The notification is called like this in tenant-settings.component.ts.

this.notify.info(this.l('SavedSuccessfully'));

And this is what it looks like in the browser (Google Chrome, Version 74.0.3729.108 (Official Build) (64-bit)).


2 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team

    see: https://support.aspnetzero.com/QA/Questions/6740

  • User Avatar
    0
    tom.ohle created

    Thanks!

    We ended up adding the below css to src/angular/src/styles.css to fix this issue.

    .swal2-popup.swal2-toast {
        padding: 12px 16px 12px 0px !important;
    }