From f93a728091e52ae5144a51fb6203fde8cdf02558 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Wed, 4 Jan 2023 23:55:10 +1100 Subject: Add event info modal Add InfoModal.vue, SCollapsible.vue, and icons. Update Timeline.vue, App.vue, lib.ts, and store.ts to display modal. For testing, send/use dummy EventInfo from server (still waiting on image downloads). --- src/store.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/store.ts') diff --git a/src/store.ts b/src/store.ts index bb29dba..1d51cc7 100644 --- a/src/store.ts +++ b/src/store.ts @@ -20,6 +20,7 @@ export const useStore = defineStore('store', { altDark2: '#ca8a04', // yellow-600 altBg: '#6a5e2e', alt2: '#2563eb', // sky-600 + bgAlt: '#f5f5f4', // stone-100 }; return { tickLen: 16, @@ -44,6 +45,7 @@ export const useStore = defineStore('store', { color, showEventCounts: true, transitionDuration: 300, + borderRadius: 5, // px }; }, }); -- cgit v1.2.3