From 4a67c2a1e3abff38146d4eabbe0eadbc496be50f Mon Sep 17 00:00:00 2001 From: chinonso098 Date: Tue, 6 Aug 2024 09:20:13 -0400 Subject: [PATCH] minor css changes --- src/app/system-apps/clock/clock.component.css | 6 +++--- src/app/system-apps/clock/clock.component.ts | 4 ++-- src/app/system-apps/fileexplorer/fileexplorer.component.css | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/system-apps/clock/clock.component.css b/src/app/system-apps/clock/clock.component.css index 4d15db3c..e142655b 100644 --- a/src/app/system-apps/clock/clock.component.css +++ b/src/app/system-apps/clock/clock.component.css @@ -1,7 +1,7 @@ .date-and-time-cntnr{ display: flex; height: 100%; - width: 80px; + width: 70px; place-content: center; place-items: center; position: absolute; @@ -13,7 +13,7 @@ font-weight: 300; top: 5px; position: absolute; - color: rgba(255, 255, 255, 0.8); + color: rgba(255, 255, 255); } .date-cntnr{ @@ -21,5 +21,5 @@ font-weight: 300; top: 22px; position: absolute; - color: rgba(255, 255, 255, 0.8); + color: rgba(255, 255, 255); } \ No newline at end of file diff --git a/src/app/system-apps/clock/clock.component.ts b/src/app/system-apps/clock/clock.component.ts index 8a986526..4cf6e9cf 100644 --- a/src/app/system-apps/clock/clock.component.ts +++ b/src/app/system-apps/clock/clock.component.ts @@ -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()}`; }); } @@ -73,4 +73,4 @@ export class ClockComponent implements AfterViewInit,OnDestroy { return new Process(this.processId, this.name, this.icon, this.hasWindow, this.type) } -} +} \ No newline at end of file diff --git a/src/app/system-apps/fileexplorer/fileexplorer.component.css b/src/app/system-apps/fileexplorer/fileexplorer.component.css index 01c2384f..13d58300 100644 --- a/src/app/system-apps/fileexplorer/fileexplorer.component.css +++ b/src/app/system-apps/fileexplorer/fileexplorer.component.css @@ -21,7 +21,7 @@ color: white; font-size: 11px; font-weight: normal; - margin: 3px 4px; + margin: 5px 4px; } /*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Header Tabs View Started@@@@@@@@@@@@@@@@@@@@@@@@@@*/