@@ -68,6 +99,7 @@ const { sortBy: activeColumn } = storeToRefs(monitoringStore);
diff --git a/src/Frontend/src/components/monitoring/EndpointListRow.vue b/src/Frontend/src/components/monitoring/EndpointListRow.vue
index 33a19b809..c7078ba2f 100644
--- a/src/Frontend/src/components/monitoring/EndpointListRow.vue
+++ b/src/Frontend/src/components/monitoring/EndpointListRow.vue
@@ -177,6 +177,7 @@ const criticalTimeGraphDuration = computed(() => formatGraphDuration(endpoint.va
@import "../list.css";
@import "./monitoring.css";
@import "./endpoint.css";
+@import "./endpointTables.css";
.hackToPreventSafariFromShowingTooltip::after {
content: "";
diff --git a/src/Frontend/src/components/monitoring/endpointTables.css b/src/Frontend/src/components/monitoring/endpointTables.css
new file mode 100644
index 000000000..e5ba8a424
--- /dev/null
+++ b/src/Frontend/src/components/monitoring/endpointTables.css
@@ -0,0 +1,30 @@
+/* Endpoint graph table*/
+
+.table-head-row {
+ display: flex;
+ padding-bottom: 5px;
+ padding-top: 20px;
+ border-bottom: 1px solid #ced6d3;
+ border-top: 1px solid #eee;
+ font-size: 12px;
+ text-transform: uppercase;
+ color: #181919;
+}
+.table-first-col {
+ width: 20%;
+ padding-left: 15px;
+ padding-right: 15px;
+}
+.table-col {
+ width: 16%;
+}
+
+/*TODO: why should wider viewports give more proportional width to the first column?*/
+@media only screen and (min-width: 1730px) {
+ .table-first-col {
+ width: 30%;
+ }
+ .table-col {
+ width: 14%;
+ }
+}