diff --git a/ogWebconsole/src/app/components/global-status/global-status.component.css b/ogWebconsole/src/app/components/global-status/global-status.component.css
index 0267674..0432265 100644
--- a/ogWebconsole/src/app/components/global-status/global-status.component.css
+++ b/ogWebconsole/src/app/components/global-status/global-status.component.css
@@ -1,8 +1,39 @@
-.action-container {
+.dashboard {
display: flex;
- justify-content: flex-end;
- gap: 1em;
- padding: 1.5em;
+ flex-direction: column;
+}
+
+mat-dialog-content {
+ padding-top: 0.5em !important;
+}
+
+.disk-usage-container {
+ display: flex;
+ flex-direction: column;
+}
+
+.disk-usage {
+ flex: 1;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+}
+
+.service-list {
+ margin-top: 0em;
+ margin-bottom: 0.5em;
+}
+
+.services-status {
+ display: flex;
+ flex-direction: column;
+}
+
+.services-status li {
+ margin: 5px 0;
+ display: flex;
+ align-items: center;
}
.status-led {
@@ -19,4 +50,34 @@
.status-led.inactive {
background-color: red;
+}
+
+.disk-title {
+ margin-bottom: 0px;
+}
+
+.service-title {
+ margin-top: 0px;
+}
+
+table {
+ width: 100%;
+ border-collapse: collapse;
+}
+
+th,
+td {
+ border: 1px solid #ddd;
+ padding: 8px;
+}
+
+th {
+ background-color: #f4f4f4;
+}
+
+.action-container {
+ display: flex;
+ justify-content: flex-end;
+ gap: 1em;
+ padding: 1.5em;
}
\ No newline at end of file
diff --git a/ogWebconsole/src/app/components/global-status/global-status.component.html b/ogWebconsole/src/app/components/global-status/global-status.component.html
index 5854768..8c076fa 100644
--- a/ogWebconsole/src/app/components/global-status/global-status.component.html
+++ b/ogWebconsole/src/app/components/global-status/global-status.component.html
@@ -7,24 +7,26 @@
{{ 'totalLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.total) }}
-{{ 'usedLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.used) }}
-{{ 'availableLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.available) }}
-{{ 'freeLabel' | translate }}: {{ ogBootDiskUsage.percentage }}%
+{{ 'totalLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.total) }}
+{{ 'usedLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.used) }}
+{{ 'availableLabel' | translate }}: {{ formatBytes(ogBootDiskUsage.available) }}
+{{ 'freeLabel' | translate }}: {{ ogBootDiskUsage.percentage }}
+