From d3d35c417719d917253608970adbcb92540eacaf Mon Sep 17 00:00:00 2001 From: Chris Campbell Date: Mon, 31 Jul 2023 14:37:40 +1000 Subject: [PATCH 1/3] Fix object type wrapping --- app/assets/stylesheets/components/_pill.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/components/_pill.scss b/app/assets/stylesheets/components/_pill.scss index a0c5f5e700..25138dfc77 100644 --- a/app/assets/stylesheets/components/_pill.scss +++ b/app/assets/stylesheets/components/_pill.scss @@ -200,5 +200,6 @@ $_pills: ( .has-pills { align-items: center; display: inline-flex; + flex-wrap: wrap; gap: 5px; } From 41465a5b0311ff7e62ae8091d15972b3c78941bb Mon Sep 17 00:00:00 2001 From: Chris Campbell Date: Mon, 31 Jul 2023 14:38:12 +1000 Subject: [PATCH 2/3] Remove table border from GraphQL object schema --- app/assets/stylesheets/base/_article.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/base/_article.scss b/app/assets/stylesheets/base/_article.scss index 595559c46b..dff6ee7fbf 100644 --- a/app/assets/stylesheets/base/_article.scss +++ b/app/assets/stylesheets/base/_article.scss @@ -187,7 +187,8 @@ td { color: currentColor; } - tr { + + tbody tr { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; } From 131017d6e76ecebb899776f124879ca6531c5210 Mon Sep 17 00:00:00 2001 From: Chris Campbell Date: Mon, 31 Jul 2023 14:38:54 +1000 Subject: [PATCH 3/3] Keep layout consistent for GraphQL pages --- app/assets/stylesheets/components/_page.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/components/_page.scss b/app/assets/stylesheets/components/_page.scss index 35af34d4f6..c68bca6902 100644 --- a/app/assets/stylesheets/components/_page.scss +++ b/app/assets/stylesheets/components/_page.scss @@ -74,6 +74,7 @@ $lg-screen-margin-top: map-get($header-height, "one-row") + $gutter; .Page__content { grid-area: content; + width: 100%; @media (min-width: $screen-lg) { max-width: map-get($max-w, "prose");