From 93df5bac1d1a7ed971a5d98477b25514a75a59e0 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Wed, 31 Jan 2024 00:18:03 +0100 Subject: [PATCH] Add popup --- src/Eventoverview.ce.vue | 43 ++++++++++++++++++++---- src/components/Popup.vue | 54 ++++++++++++++++++++++++++++++ src/components/icons/CloseIcon.vue | 16 +++++++++ tailwind.config.js | 18 ++++++++++ 4 files changed, 124 insertions(+), 7 deletions(-) create mode 100644 src/components/Popup.vue create mode 100644 src/components/icons/CloseIcon.vue diff --git a/src/Eventoverview.ce.vue b/src/Eventoverview.ce.vue index ee4ac29..7e68e41 100644 --- a/src/Eventoverview.ce.vue +++ b/src/Eventoverview.ce.vue @@ -1,40 +1,51 @@ diff --git a/src/components/Popup.vue b/src/components/Popup.vue new file mode 100644 index 0000000..a3c0797 --- /dev/null +++ b/src/components/Popup.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/components/icons/CloseIcon.vue b/src/components/icons/CloseIcon.vue new file mode 100644 index 0000000..f48dbed --- /dev/null +++ b/src/components/icons/CloseIcon.vue @@ -0,0 +1,16 @@ + diff --git a/tailwind.config.js b/tailwind.config.js index b11db51..c506d14 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,12 +4,26 @@ export default { theme: { extend: { colors: { + gray: { + 100: "#f7fafc", + 200: "#edf2f7", + 300: "#e2e8f0", + 400: "#cbd5e0", + 500: "#a0aec0", + 600: "#718096", + 700: "#4a5568", + 800: "#2d3748", + 900: "#1a202c", + }, edit: { DEFAULT: "hsl(20, 77%, 55%)", }, primary: { DEFAULT: "var(--primary)", }, + primaryfg: { + DEFAULT: "var(--primaryfg)", + }, secondary: { DEFAULT: "var(--secondary)", }, @@ -22,6 +36,10 @@ export default { }, fontFamily: { arvo: ["Arvo"], + nunito: ["Nunito"], + }, + boxShadow: { + button: "inset 0 -2px 0 rgba(255,255,255,0.2)", }, }, },