From 584b706b1e310297acc2580c60442ff5c11ae432 Mon Sep 17 00:00:00 2001 From: Cameron <113076756+cameronaw13@users.noreply.github.com> Date: Thu, 14 Sep 2023 15:50:40 -0700 Subject: [PATCH] feat: added shell resizing (#2648) --- frontend/public/themes/dark.css | 6 ++ frontend/src/components/Shell.vue | 101 ++++++++++++++++++++++++------ frontend/src/css/_shell.css | 42 ++++++++++--- frontend/src/css/mobile.css | 4 ++ frontend/src/store/mutations.js | 1 + 5 files changed, 128 insertions(+), 26 deletions(-) diff --git a/frontend/public/themes/dark.css b/frontend/public/themes/dark.css index 98353831..eb887bfe 100644 --- a/frontend/public/themes/dark.css +++ b/frontend/public/themes/dark.css @@ -174,6 +174,12 @@ table th { background: var(--surfacePrimary); color: var(--textPrimary); } +.shell__divider { + background: rgba(255, 255, 255, 0.1); +} +.shell__divider:hover { + background: rgba(255, 255, 255, 0.4); +} .shell__result { border-top: 1px solid var(--divider); } diff --git a/frontend/src/components/Shell.vue b/frontend/src/components/Shell.vue index dd5bf319..844c496f 100644 --- a/frontend/src/components/Shell.vue +++ b/frontend/src/components/Shell.vue @@ -1,37 +1,54 @@