From 75eed870373e0ab225766ca331b7daf8a8666d13 Mon Sep 17 00:00:00 2001 From: Filip Borum Poulsen Date: Mon, 24 Apr 2023 13:18:20 +0200 Subject: [PATCH] Cleaned up trainer schedule view --- client/src/views/trainer/Schedule.vue | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/client/src/views/trainer/Schedule.vue b/client/src/views/trainer/Schedule.vue index cc29bbc..25185c1 100644 --- a/client/src/views/trainer/Schedule.vue +++ b/client/src/views/trainer/Schedule.vue @@ -8,8 +8,10 @@ {{ timeslot.start_time.split(":").slice(0, 2).join(":") }} - {{ timeslot.end_time.split(":").slice(0, 2).join(":") }} +
+
-
+
@@ -20,7 +22,7 @@ v-model="newDayInput[day.day_of_week - 1].endHour" /> - +
@@ -89,6 +91,16 @@ .timeslot:hover { border-color: lightcoral; } + +.addTimeslotButton { + justify-self: center; + align-self: center; + font-weight: 700; + font-size: 2em; + line-height: 1em; + color: steelblue; + cursor: pointer; +}