From b03b2d927397fc08ba2794c6bd7773b27073d4cd Mon Sep 17 00:00:00 2001 From: Timothy Yin Date: Sat, 19 Apr 2025 17:19:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E7=BB=93=E6=9E=84=EF=BC=8C=E9=87=8D=E6=9E=84=E8=AF=BE=E7=A8=8B?= =?UTF-8?q?=E5=87=86=E5=A4=87=E9=A1=B5=E9=9D=A2=E5=8F=8A=E5=85=B6=E5=AD=90?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E6=B7=BB=E5=8A=A0=E6=96=B0=E7=BB=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/tailwind.css | 4 +- components/app/Container.vue | 15 ++++-- components/fn/teach/LessonPlan.vue | 7 +++ components/nav/Secondary.vue | 4 +- components/nav/Tertiary.vue | 49 +++++++++++++++++ pages/course/[id].vue | 2 +- pages/course/prep/config.ts | 40 ++++++-------- pages/course/prep/deck.vue | 25 +++++++-- pages/course/prep/quiz.vue | 25 +++++++-- pages/course/prep/teach.vue | 85 ++++++++++++++++++++++++++++-- pages/course/resources/index.vue | 4 +- 11 files changed, 217 insertions(+), 43 deletions(-) create mode 100644 components/fn/teach/LessonPlan.vue create mode 100644 components/nav/Tertiary.vue diff --git a/assets/css/tailwind.css b/assets/css/tailwind.css index 1973f01..f1f32ee 100644 --- a/assets/css/tailwind.css +++ b/assets/css/tailwind.css @@ -10,7 +10,7 @@ --card-foreground: 0 0% 3.9%; --popover: 0 0% 100%; --popover-foreground: 0 0% 3.9%; - --primary: 0 0% 9%; + --primary: 238.73deg 83.53% 66.67%; --primary-foreground: 0 0% 98%; --secondary: 0 0% 96.1%; --secondary-foreground: 0 0% 9%; @@ -46,7 +46,7 @@ --card-foreground: 0 0% 98%; --popover: 0 0% 3.9%; --popover-foreground: 0 0% 98%; - --primary: 0 0% 98%; + --primary: 234.45deg 89.47% 73.92%; --primary-foreground: 0 0% 9%; --secondary: 0 0% 14.9%; --secondary-foreground: 0 0% 98%; diff --git a/components/app/Container.vue b/components/app/Container.vue index b1784e7..1f55826 100644 --- a/components/app/Container.vue +++ b/components/app/Container.vue @@ -1,7 +1,11 @@