remove inapp notif example, ui fixes for responsiveness
This commit is contained in:
parent
c24fc09866
commit
363a3c9142
|
@ -126,25 +126,6 @@ export class MineInAppNotificationListingDialogComponent extends BaseComponent i
|
|||
.subscribe(
|
||||
data => {
|
||||
this.inappNotifications = data.items;
|
||||
this.inappNotifications = [{
|
||||
id: Guid.create(),
|
||||
user: {
|
||||
name: 'User Name',
|
||||
additionalInfo: null,
|
||||
contacts: null,
|
||||
globalRoles: null,
|
||||
tenantRoles: null,
|
||||
credentials: null,
|
||||
},
|
||||
isActive: IsActive.Active,
|
||||
type: Guid.create(),
|
||||
trackingState: NotificationInAppTracking.Delivered,
|
||||
subject: 'Hi',
|
||||
body: 'Hello World',
|
||||
createdAt: moment().toDate(),
|
||||
updatedAt: moment().toDate(),
|
||||
hash: '56565',
|
||||
}]
|
||||
},
|
||||
error => this.httpErrorHandlingService.handleBackedRequestError(error)
|
||||
);
|
||||
|
|
|
@ -691,6 +691,8 @@ button, .mdc-button, .mat-mdc-button, .mdc-button:has(.material-icons,mat-icon,[
|
|||
///
|
||||
///
|
||||
///
|
||||
///
|
||||
|
||||
ul.horizontal-list {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
|
@ -725,6 +727,20 @@ ul.unstyled-list {
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
#main-page {
|
||||
container-name: main-page;
|
||||
container-type: inline-size;
|
||||
}
|
||||
|
||||
@container main-page (inline-size < 550px){
|
||||
.main-content {
|
||||
padding: 0 !important;
|
||||
}
|
||||
.container-fluid:first-child {
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// .mat-checkbox-checked.mat-accent .mat-checkbox-background, .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
|
||||
// background-color: var(--primary-color-3);
|
||||
|
|
Loading…
Reference in New Issue