Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div style="margin-bottom: '2rem'">
<div class="background-image-style" [ngStyle]="{ 'background-image': getUrl() }">
<div class="background-image-style">
<div class="background-style content">
<div>
<h1 class="title">{{ title }}</h1>
<h1 class="title" [innerHTML]="title"></h1>
<p class="message">{{ message }}</p>
</div>
</div>
Expand Down
16 changes: 8 additions & 8 deletions src/app/_samples/mediaco/components/banner/banner.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}

.background-image-style {
height: calc(19rem);
height: calc(20rem);
background-size: cover;
background-position: center center;
}
Expand All @@ -50,21 +50,21 @@
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 5rem;
gap: calc(0.5rem);
}

.title {
margin: 0rem;
font-size: 1.728rem;
font-weight: 600;
font-size: 36px;
color: #46185a;
font-weight: 700;
}

.message {
margin: 0;
font-size: 1rem;
font-weight: 400;
font-size: 14px;
margin-top: 16px;
color: #49454f;
}

.banner-layout {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $btn-text-color: #5c4498;

position: absolute;
z-index: 10;
left: 29%;
left: 30%;
top: 15rem;
}

Expand Down
1 change: 1 addition & 0 deletions src/app/_samples/mediaco/components/todo/todo.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export class TodoComponent implements OnInit, OnDestroy {

deferLoadWorklistItems(responseData) {
this.arAssignments$ = responseData.data;
this.surveyCase = this.surveyAssignment(this.arAssignments$);
}

surveyAssignment(assignmentsSource: any[]) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</mat-sidenav>
<mat-sidenav-content>
<!-- Top Toolbar -->
<mat-toolbar *ngIf="activePage === 'Self-service Main page'" style="position: relative; background: transparent">
<mat-toolbar style="position: relative; background: transparent">
<mat-toolbar-row mat-icon-button style="justify-content: space-between">
<div class="psdk-nav-header" (click)="navPanelButtonClick(homePage)">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ mat-nav-list {

/* 2. Scale the icon up when hovering the list item */
.horizontal-list mat-list-item:hover .circle-icon {
transform: scale(1.2); /* Zooms in by 20% - adjust this number as needed */
cursor: pointer; /* Changes cursor to pointer to indicate interactivity */
}

Expand Down
Loading