Skip to content

Commit

Permalink
#212 - completed header bar
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsoto committed Oct 10, 2024
1 parent 85ae44c commit 2447c7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class LandingPageCurrentRunDisplay {

ngOnInit() {
this.storage.getCurrentRunId().subscribe((runId) => {
if (runId) { this.currentRun = runId}
if (runId) { this.currentRun = runId }
});
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<info-background>
<div class="date-location-display">
<typography variant="header" content="{{ time | date: 'MM/dd/yyyy' }}" additionalStyles="margin: 0px"/>
<typography variant="header" content="{{ time | date: 'MM/dd/yyyy' }}" additionalStyles="margin: 0px" />
<typography variant="info-subtitle" content="{{ location }}" />
</div>
</info-background>
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<info-background>
<div class="viewer-display">
<typography variant="header" content="Viewers" additionalStyles="margin: 0px"/>
<typography variant="header" content="Viewers" additionalStyles="margin: 0px" />
<typography variant="info-subtitle" [content]="numViewers.toString()" />
</div>
</info-background>

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ng-template #isDesktop>
<vstack style="width: 100%" spacing="40px">
<vstack style="width: 100%" spacing="10px">
<landing-page-header style="width: 100%; padding-top: 40px;" />
<landing-page-header style="width: 100%; padding-top: 40px" />
</vstack>

<vstack style="width: 100%" spacing="20px">
Expand Down

0 comments on commit 2447c7a

Please sign in to comment.