From e68df36dbc710c75872555c9696d4f133c9d9636 Mon Sep 17 00:00:00 2001 From: Adem <37814393+floki1250@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:05:29 +0100 Subject: [PATCH] Improvement --- .vscode/settings.json | 2 +- assets/main.scss | 21 ++--- layouts/default.vue | 2 +- pages/Receive.vue | 8 +- pages/Send.vue | 187 +++++++++++++++++------------------------- pages/index.vue | 29 ++++--- 6 files changed, 104 insertions(+), 145 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9204d4e..87145a5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { "nuxt.isNuxtApp": false, - "vue3snippets.enable-compile-vue-file-on-did-save-code": true + "vue3snippets.enable-compile-vue-file-on-did-save-code": false } diff --git a/assets/main.scss b/assets/main.scss index 4ef57a6..0cbaee1 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -20,36 +20,29 @@ html { } html.light { - background: radial-gradient(farthest-corner at 40px 40px, #5fd6d0 2%, #ffffff); + background: #ffffff } html.dark { - background: radial-gradient(farthest-corner at 40px 40px, #5fd6d0 0%, #000000 100%); + background: #1f1f1f } .blur-blob { - background-color: #5fd6d0; border-radius: 9999px; - filter: blur(64px); - height: 12rem; - mix-blend-mode: hard-light; - opacity: .6; - position: absolute; + filter: blur(60px); + height: 30%; transition-duration: 2s; - transition-property: top, left, bottom, right, opacity, background; transition-timing-function: cubic-bezier(.075, .82, .165, 1); - width: 12rem; + width: 30%; z-index: -10 } -.dark .blur-blob { - opacity: .3 -} + .awesome-shadow { - box-shadow: inset 0 0 100px 20px rgba(255, 255, 255, 0.8); + box-shadow: inset 0 0 100px 20px rgba(255, 255, 255, 0.6); } diff --git a/layouts/default.vue b/layouts/default.vue index 5a1e669..12e31a5 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -1,7 +1,7 @@