From 3e887ec5b5d01b1c0923950f4d062dcff2cc04a1 Mon Sep 17 00:00:00 2001 From: julian Date: Sat, 28 Oct 2023 03:34:48 +0200 Subject: [PATCH] Style: Make footer adaptive - Set flex-flow of the list to "row wrap" to make the footer adaptive. - Set display of the list to flex to make it clear we're using it. This is already set in Pico CSS so it isn't necessary, but I think it's nicer to have it set again explictly. See here for the relevant Pico CSS code: https://github.com/picocss/pico/blob/aaa1ffe05ce649c808105b34c1ad69a54c9d215f/scss/components/_nav.scss#L20 --- themes/ccchh/assets/sass/main.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/ccchh/assets/sass/main.scss b/themes/ccchh/assets/sass/main.scss index 5c4adb3..d4c51d3 100644 --- a/themes/ccchh/assets/sass/main.scss +++ b/themes/ccchh/assets/sass/main.scss @@ -30,6 +30,12 @@ header { body>footer { padding-top: var(--spacing); padding-bottom: var(--spacing); + nav { + ul { + display: flex; + flex-flow: row wrap; + } + } } body>main {