diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-04 23:55:10 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-04 23:55:10 +1100 |
| commit | f93a728091e52ae5144a51fb6203fde8cdf02558 (patch) | |
| tree | 3de78eda743a8064212dda25dcc690371d9413f7 /src/store.ts | |
| parent | 969a5351529971180748ef1a6c41b22da87b5af1 (diff) | |
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).
Diffstat (limited to 'src/store.ts')
| -rw-r--r-- | src/store.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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 }; }, }); |
