Skip to content

Commit a1d981a

Browse files
committed
update
1 parent 1e41411 commit a1d981a

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

src/app/collate/collate.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2+
<app-breadcrumb></app-breadcrumb>
23
<div class="collate-container">
3-
<app-breadcrumb></app-breadcrumb>
44
<div class="header-container" style="display: flex; flex-direction: row; justify-content: center; align-items: center; height: 200px">
55
<div class="header" style="text-align: center; font-family: Roboto, Helvetica Neue, sans-serif">
66
<h1>C|nder Collates</h1><br>

src/app/collate/cytoscape-plot/cytoscape-plot.component.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.side-by-side-container {
22
display: flex;
33
flex-direction: row;
4-
gap: 8px;
4+
gap: 16px;
55
width: 100%;
66
height: calc(100vh - 100px);
7+
padding-left: 16px;
78
}
89

910
.cytoscape-plot-container {

src/app/project/project-view/project-view.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
<app-breadcrumb></app-breadcrumb>
12
<div style="display: flex; flex-direction: row; justify-content: center; padding: 50px">
23
<div style="width: 100%">
3-
<app-breadcrumb></app-breadcrumb>
44
@if (project) {
55
<form (ngSubmit)="updateProject()" [formGroup]="form" style="display: flex; flex-direction: column; gap: 20px">
66
<mat-form-field style="width: 100%">

src/app/search-session/search-session-view/search-session-view.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
<app-breadcrumb></app-breadcrumb>
12
<div style="display: flex; flex-direction: row; justify-content: center">
23
<div style="width: 100%; padding: 50px">
3-
<app-breadcrumb></app-breadcrumb>
44
@if (selectedSearchResult) {
55
<div>
66
<app-selected-result-view [searchResult]="selectedSearchResult"></app-selected-result-view>

src/app/shared/breadcrumb/breadcrumb.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { MatIconModule } from '@angular/material/icon';
3838
`,
3939
styles: [`
4040
.breadcrumb-nav {
41-
padding: 16px 0;
41+
padding: 16px 50px;
4242
background-color: transparent;
4343
}
4444

0 commit comments

Comments
 (0)