Skip to content

Commit

Permalink
minor css changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chinonso098 committed Aug 6, 2024
1 parent ce584cd commit 4a67c2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/app/system-apps/clock/clock.component.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.date-and-time-cntnr{
display: flex;
height: 100%;
width: 80px;
width: 70px;
place-content: center;
place-items: center;
position: absolute;
Expand All @@ -13,13 +13,13 @@
font-weight: 300;
top: 5px;
position: absolute;
color: rgba(255, 255, 255, 0.8);
color: rgba(255, 255, 255);
}

.date-cntnr{
font-size: 11px;
font-weight: 300;
top: 22px;
position: absolute;
color: rgba(255, 255, 255, 0.8);
color: rgba(255, 255, 255);
}
4 changes: 2 additions & 2 deletions src/app/system-apps/clock/clock.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class ClockComponent implements AfterViewInit,OnDestroy {
private oberserableDate():void{
this._dateSubscription = timer(50, 360000).subscribe(() => {
const dateTime = new Date();
this.subscribeDate = `${dateTime.getMonth() + 1}/${this.padSingleDigits(dateTime.getDate())}/${dateTime.getFullYear()}`;
this.subscribeDate = `${dateTime.getMonth() + 1}/${dateTime.getDate()}/${dateTime.getFullYear()}`;
});
}

Expand All @@ -73,4 +73,4 @@ export class ClockComponent implements AfterViewInit,OnDestroy {
return new Process(this.processId, this.name, this.icon, this.hasWindow, this.type)
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
color: white;
font-size: 11px;
font-weight: normal;
margin: 3px 4px;
margin: 5px 4px;
}

/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Header Tabs View Started@@@@@@@@@@@@@@@@@@@@@@@@@@*/
Expand Down

0 comments on commit 4a67c2a

Please sign in to comment.