From 00c713bda18fb5509b38c9364496818f63619cf1 Mon Sep 17 00:00:00 2001 From: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:32:32 -0700 Subject: [PATCH] Align pill with expandable header (#5772) ## What are you changing in this pull request and why? Vertically align pill with the expandable alt_header, per https://github.com/dbt-labs/docs.getdbt.com/pull/5588#pullrequestreview-2093911588 ## Checklist - [x] Test changes in localhost Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- website/src/components/expandable/styles.module.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/src/components/expandable/styles.module.css b/website/src/components/expandable/styles.module.css index 8c37036ad86..fc6f258286b 100644 --- a/website/src/components/expandable/styles.module.css +++ b/website/src/components/expandable/styles.module.css @@ -141,3 +141,8 @@ .expandableContainer { margin-bottom: 5px; /* Adjust this value as needed to create space */ } + +.headerText { + display: flex; + align-items: center; +} \ No newline at end of file