From 7891d330d80b08540d018650b53875a553232f34 Mon Sep 17 00:00:00 2001 From: fosly Date: Fri, 30 Aug 2024 18:20:33 +0700 Subject: [PATCH 1/2] fix: overflow UI --- .vscode/settings.json | 11 ++++++++++ src/components/ai_ball.astro | 1 + src/pages/index.astro | 39 ++++++++++++++++++++++++++++-------- 3 files changed, 43 insertions(+), 8 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..39f6105 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "workbench.colorCustomizations": { + "[One Dark Pro Mix]": { + "activityBar.activeBackground": "#393E46", + "activityBar.activeBorder": "#E7F6F2", + "activityBar.background": "#222831" + }, + "minimap.background": "#00000000", + "scrollbar.shadow": "#00000000" + } +} \ No newline at end of file diff --git a/src/components/ai_ball.astro b/src/components/ai_ball.astro index c28ae61..b44b5c6 100644 --- a/src/components/ai_ball.astro +++ b/src/components/ai_ball.astro @@ -14,6 +14,7 @@ display: flex; justify-content: center; align-items: center; + padding: 40px 0px 0; } #inner_div, diff --git a/src/pages/index.astro b/src/pages/index.astro index 52f89ef..f7aac72 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -12,11 +12,16 @@ import SendButton from "../components/send_btn.astro"; />
-
-
-
- - +
+
+
+
+
+
+ + +
+
@@ -49,10 +57,10 @@ import SendButton from "../components/send_btn.astro"; From ce342c77696198ee8b036e0df6e99bd2908bbc59 Mon Sep 17 00:00:00 2001 From: fosly Date: Fri, 30 Aug 2024 18:21:58 +0700 Subject: [PATCH 2/2] feat: delete .vscode folder --- .vscode/settings.json | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 39f6105..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "workbench.colorCustomizations": { - "[One Dark Pro Mix]": { - "activityBar.activeBackground": "#393E46", - "activityBar.activeBorder": "#E7F6F2", - "activityBar.background": "#222831" - }, - "minimap.background": "#00000000", - "scrollbar.shadow": "#00000000" - } -} \ No newline at end of file