From c0c0860119488f61a72e08e5f12a3c7cd69e98db Mon Sep 17 00:00:00 2001 From: cjyabraham Date: Mon, 6 Feb 2023 14:08:35 +0700 Subject: [PATCH 1/2] Don't repeat the first blog post in listing Signed-off-by: cjyabraham --- _layouts/blog.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_layouts/blog.html b/_layouts/blog.html index 2a8749b5be82..679d986e5fa2 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -36,6 +36,11 @@

{% for post in posts %} + + {% if forloop.first %} + {% continue %} + {% endif %} +

{{ post.date | date: '%B %d, %Y' }}

From 204f2f81e0e6e30efd555ebd0c72203056108c34 Mon Sep 17 00:00:00 2001 From: cjyabraham Date: Mon, 6 Feb 2023 16:15:49 +0700 Subject: [PATCH 2/2] Makes Resources menu wider so dropdown doesn't go below-the-fold Signed-off-by: cjyabraham --- _sass/navigation.scss | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/_sass/navigation.scss b/_sass/navigation.scss index 55cfa3d3ec0b..6ba5c1096a0a 100644 --- a/_sass/navigation.scss +++ b/_sass/navigation.scss @@ -249,11 +249,23 @@ } } +.main-menu ul li:nth-child(7) .resources-dropdown { + + .resources-dropdown-menu { + width: 376px; + left: -110px; + + p { + margin-bottom: 0.5rem; + } + } +} + + .main-menu ul li { .ecosystem-dropdown, .resources-dropdown a { cursor: pointer; } - .ecosystem-dropdown, .resources-dropdown { .with-down-orange-arrow { padding-right: rem(32px);