From c5d61c7490d6cc2cd574962a147037c14330c317 Mon Sep 17 00:00:00 2001
From: jacobshandling <61553566+jacobshandling@users.noreply.github.com>
Date: Tue, 26 Nov 2024 12:29:50 -0800
Subject: [PATCH] UI - Improve side nav empty state UI under `/settings`
(#24145)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## #23027
- [x] Changes file added for user-visible changes in `changes/`,
- [x] Manual QA for all new/changed functionality
---------
Co-authored-by: Jacob Shandling
---
changes/23027-settings-empty-states | 1 +
.../IntegrationsPage/cards/Integrations/_styles.scss | 11 +++++++++++
2 files changed, 12 insertions(+)
create mode 100644 changes/23027-settings-empty-states
diff --git a/changes/23027-settings-empty-states b/changes/23027-settings-empty-states
new file mode 100644
index 0000000000..ecc6736d05
--- /dev/null
+++ b/changes/23027-settings-empty-states
@@ -0,0 +1 @@
+* Improve side nav empty state UI under `/settings`
\ No newline at end of file
diff --git a/frontend/pages/admin/IntegrationsPage/cards/Integrations/_styles.scss b/frontend/pages/admin/IntegrationsPage/cards/Integrations/_styles.scss
index deec080471..84251e7c97 100644
--- a/frontend/pages/admin/IntegrationsPage/cards/Integrations/_styles.scss
+++ b/frontend/pages/admin/IntegrationsPage/cards/Integrations/_styles.scss
@@ -78,4 +78,15 @@
width: 24px;
}
}
+ .empty-table__container {
+ padding: px-to-rem(64) $pad-large;
+ border-radius: $pad-xsmall;
+ border: px-to-rem(1) solid $ui-fleet-black-10;
+ margin: 0;
+ max-width: none;
+ width: 100%;
+ h3 {
+ margin-bottom: px-to-rem(10);
+ }
+ }
}