From 00346cc6f1b9245ce15532992cc34eca7f1dc984 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 13 Aug 2023 14:44:02 -0700 Subject: [PATCH] Added shell resizing --- 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 @@