From 736e615ebd7791992ca2584f52d5169fe99b7c8a Mon Sep 17 00:00:00 2001 From: Vicki League Date: Thu, 14 Aug 2025 14:01:53 -0400 Subject: [PATCH] [CL-653] Fix provider setup bg and vault filter truncation (#16018) --- apps/web/src/scss/tailwind.css | 5 +++++ apps/web/src/scss/vault-filters.scss | 11 +++++++++++ 2 files changed, 16 insertions(+) diff --git a/apps/web/src/scss/tailwind.css b/apps/web/src/scss/tailwind.css index a8b27188fe9..8d21a054fdb 100644 --- a/apps/web/src/scss/tailwind.css +++ b/apps/web/src/scss/tailwind.css @@ -49,6 +49,11 @@ } } + body { + @apply tw-bg-background; + @apply tw-text-main; + } + /** * Loading page */ diff --git a/apps/web/src/scss/vault-filters.scss b/apps/web/src/scss/vault-filters.scss index f7c6f9a54dc..52c85e8f0ae 100644 --- a/apps/web/src/scss/vault-filters.scss +++ b/apps/web/src/scss/vault-filters.scss @@ -10,6 +10,11 @@ font-size: 1rem; } + button { + overflow: hidden; + text-overflow: ellipsis; + } + h3, button.filter-button { margin: 0; @@ -68,6 +73,12 @@ display: flex; align-items: center; + button, + a { + overflow: hidden; + text-overflow: ellipsis; + } + .contents { display: contents; }