Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
center content of sidebar
  • Loading branch information
daros10 committed Mar 11, 2020
commit edef9a32cb7ad5b306030c6a5bee4c6add60e661
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<p>getting-started works!</p>
<div class="text-center mt-5">

<p>getting-started works!</p>

</div>
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<p>reports works!</p>
<div class="text-center mt-5">

<p>reports works!</p>

</div>
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<p>time-clock works!</p>
<div class="text-center mt-5">

<p>time-clock works!</p>

</div>
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<p>time-entries works!</p>
<div class="text-center mt-5">

<p>time-entries works!</p>

</div>
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<p>time-off works!</p>
<div class="text-center mt-5">

<p>time-off works!</p>

</div>
10 changes: 0 additions & 10 deletions src/app/components/shared/clock/clock.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ export class ClockComponent implements OnInit {
}, 3000);
}

horatTest() {
this.currentDate = new Date();
this.hour = this.currentDate.getHours();
this.minutes = this.currentDate.getMinutes();
this.seconds = this.currentDate.getSeconds();
this.displayTime = false;
setTimeout( 'horatTest()' , 3000);
}


ngOnInit(): void {
}

Expand Down
5 changes: 4 additions & 1 deletion src/app/components/shared/sidebar/sidebar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
<!-- /#sidebar-wrapper -->

<!-- Page Content -->
<router-outlet></router-outlet>
<div class="container">
<router-outlet></router-outlet>
</div>

<!-- /#page-content-wrapper -->

</div>
Expand Down