From 0248517c6845a6c755d40c89d3d769ce7d60bd03 Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Thu, 23 Jan 2025 15:59:58 +0000 Subject: Some more shit --- assets/css/main.css | 14 +++++++++----- components/Button.vue | 33 ++++++++++++++++++++++++++------- components/Dialog.vue | 41 ++++++++++++++++++++++++++++++++++------- components/EventListing.vue | 34 +++++++++++++++++++++++++++++++--- components/Nav.vue | 2 +- components/Panel.vue | 8 ++++---- components/Sidebar.vue | 36 +++++++++++++++++++++++------------- pages/agenda.vue | 20 ++++++++++++++------ pages/events.vue | 2 +- pages/live.vue | 32 +++++++++++++++++++++++++++++++- pages/register.vue | 2 +- stores/schedule.ts | 4 ++++ 12 files changed, 179 insertions(+), 49 deletions(-) diff --git a/assets/css/main.css b/assets/css/main.css index 4af7ef0..c93c22d 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -5,18 +5,22 @@ --color-accent: #6366f1; --color-primary: #4f46e5; --color-primary-dark: #4338ca; - --color-error: #f8d7da; - --color-success: #d1e7dd; + --color-favourite: #f6e05e; + --color-error: #cf2f27; + --color-error-light: #f8d7da; + --color-error-dark: #ad1f2b; + --color-success-light: #d1e7dd; + --color-text: #000; --color-text-error: #cf2f27; + --color-text-success: #3d9970; --color-text-muted: #4b5563; --color-text-muted-light: #6b7280; --color-background-muted: #f3f4f6; --color-background: #fff; --color-border: #d1d9e0; - --color-border-error: #f1aeb5; - --color-border-success: #a3cfbb; - --color-favourite: #f6e05e; + --color-border-error-light: #f1aeb5; + --color-border-success-light: #a3cfbb; --text-smaller: 0.75rem; --text-small: 0.875rem; diff --git a/components/Button.vue b/components/Button.vue index 97ff928..2d24bad 100644 --- a/components/Button.vue +++ b/components/Button.vue @@ -1,6 +1,6 @@