From 7d53fe08ce7eaabcc06cddc3ee21667fa28ef29b Mon Sep 17 00:00:00 2001 From: Jordan Vidrine <30537603+jordanvidrine@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:20:12 -0600 Subject: [PATCH] button/chat fixes (#21) --- scss/buttons.scss | 6 ++++-- scss/chat.scss | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scss/buttons.scss b/scss/buttons.scss index 58aa071..7210f8d 100644 --- a/scss/buttons.scss +++ b/scss/buttons.scss @@ -34,10 +34,12 @@ } } +.btn-default.sidebar-new-topic-button { + border: none; +} + .btn-default { border: 1px solid var(--primary-300); - //id like to use rgba of the accent colour but how to derive that? - // box-shadow: 0px 0px 8px 2px oklch(from (var(--accent-color)) calc(l * 2) calc(c * 0.125) h); background: var(--secondary); .d-icon { diff --git a/scss/chat.scss b/scss/chat.scss index e05517b..2e78e0f 100644 --- a/scss/chat.scss +++ b/scss/chat.scss @@ -31,6 +31,7 @@ body.has-full-page-chat { margin-bottom: var(--spacing-block-xs); font-size: var(--font-up-1); border-radius: var(--d-border-radius); + border-bottom: none; &:hover { background-color: var(--d-sidebar-active-background); }