Skip to content

Commit

Permalink
style changes to move UI closer to figma design and bugfix (#1761)
Browse files Browse the repository at this point in the history
Co-authored-by: danoswaltCL <[email protected]>
  • Loading branch information
Yagnik56 and danoswaltCL authored Jul 16, 2024
1 parent 5b4f186 commit 907ea12
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
flex-direction: column;
align-items: space-between;
width: 100%;
height: 600px;
max-height: 700px;
}

.title {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
flex-direction: column;
align-items: space-between;
width: 100%;
height: 600px;
max-height: 700px;
}

.title {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<ng-container class="header">
<div class="ft-14-400 breadcrumb">
<a [routerLink]="['/', rootLink]" class="root-link">{{ rootName | translate }} </a>
>
<span class="details-name">{{ detailsName | translate }}</span>
<span>
<a [routerLink]="['/', rootLink]" class="root-link">{{ rootName | translate }} </a>
> <b>{{ detailsName | translate }}</b>
</span>
</div>
</ng-container>
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
.breadcrumb {
display: flex;
column-gap: 8px;
color: var(--light-black);

.root-link,
.details-name {
color: var(--light-black);
.root-link {
text-decoration: none;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
::ng-deep .header {
height: 112px;
min-height: 112px;
display: flex;
flex-direction: column;
justify-content: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ export class DialogService {
const config: MatDialogConfig = {
data: commonModalConfig,
width: '670px',
height: '390px',
autoFocus: 'input',
disableClose: true,
};
Expand All @@ -145,7 +144,6 @@ export class DialogService {
const config: MatDialogConfig = {
data: commonModalConfig,
width: '670px',
height: '460px',
autoFocus: 'input',
disableClose: true,
};
Expand Down

0 comments on commit 907ea12

Please sign in to comment.