From 1e28d69cbbb0fb3d31631277fe7afe73c7f4042c Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 13 Jul 2020 22:47:28 +0100 Subject: [PATCH] added an option to share custom themes --- public/css/style.scss | 23 ++++++++++++++ public/index.html | 11 ++++++- public/js/settings.js | 71 ++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 103 insertions(+), 2 deletions(-) diff --git a/public/css/style.scss b/public/css/style.scss index dc3fcb168..363dc1148 100644 --- a/public/css/style.scss +++ b/public/css/style.scss @@ -308,6 +308,29 @@ a:hover { } } +#customThemeShareWrapper { + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.75); + position: fixed; + left: 0; + top: 0; + z-index: 1000; + display: grid; + justify-content: center; + align-items: center; + padding: 5rem 0; + + #customThemeShare { + width: 50vw; + background: var(--bg-color); + border-radius: var(--roundness); + padding: 2rem; + display: grid; + gap: 1rem; + overflow-y: scroll; + } +} #resultEditTagsPanelWrapper { width: 100%; diff --git a/public/index.html b/public/index.html index a24345acc..0dc9e673b 100644 --- a/public/index.html +++ b/public/index.html @@ -37,6 +37,12 @@ Important information about your account. Please click this message.
Signed in
+