From ef62a97c0963ffacbf7e10a4a6688aba0ddf6bbb Mon Sep 17 00:00:00 2001 From: Remko Date: Mon, 12 Feb 2024 16:56:01 +0100 Subject: [PATCH 1/3] Fixed minor css parse error --- README.md | 1 + package.json | 2 +- src/components/tabs/Tabs.module.css | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad3e0ac..a8df868 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ - **Version 2.2 (breaking changes from 2.1.x)** + - 2.2.46: Fixed minor css error. - 2.2.45: Updated Pagination and select to ensure more WCAG compliancy. - 2.2.44: Updated PrimaryTopNav to allow font-weight. - 2.2.43: Updated DownloadCard to allow size as string. diff --git a/package.json b/package.json index 28e1f36..6c1c246 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@conduction/components", - "version": "2.2.45", + "version": "2.2.46", "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)", "main": "lib/index.js", "scripts": { diff --git a/src/components/tabs/Tabs.module.css b/src/components/tabs/Tabs.module.css index 9f6243b..ff26975 100644 --- a/src/components/tabs/Tabs.module.css +++ b/src/components/tabs/Tabs.module.css @@ -14,7 +14,7 @@ --conduction-tabs-tab-padding-inline-start: var(--skeleton-size-sm); --conduction-tabs-tab-padding-inline-end: var(--skeleton-size-sm); /* --conduction-tabs-tab-margin-inline-end: var(--skeleton-size-xs); */ - --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm: ); + --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm); --conduction-tabs-tab-font-weight: var(--skeleton-font-weight-normal); --conduction-tabs-tab-font-family: "Noto Sans", Arial, sans-serif; --conduction-tabs-tab-max-width: unset; From 151def31f0cf03d87bb741a224261df64b151d74 Mon Sep 17 00:00:00 2001 From: Remko Date: Mon, 12 Feb 2024 16:59:05 +0100 Subject: [PATCH 2/3] Cleanup --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8df868..a1a1b8f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - **Version 2.2 (breaking changes from 2.1.x)** - - 2.2.46: Fixed minor css error. + - 2.2.46: Fixed minor css parse error. - 2.2.45: Updated Pagination and select to ensure more WCAG compliancy. - 2.2.44: Updated PrimaryTopNav to allow font-weight. - 2.2.43: Updated DownloadCard to allow size as string. From a9b772b823f9b5ea6cbb79972c53d9de3ddd6e5e Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 13 Feb 2024 10:01:24 +0100 Subject: [PATCH 3/3] Fixed minor css parse errors --- README.md | 2 +- package.json | 2 +- src/components/container/Container.module.css | 2 +- src/components/topNav/primaryTopNav/PrimaryTopNav.module.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a1a1b8f..1608425 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - **Version 2.2 (breaking changes from 2.1.x)** - - 2.2.46: Fixed minor css parse error. + - 2.2.46 / 2.2.47: Fixed minor css parse error. - 2.2.45: Updated Pagination and select to ensure more WCAG compliancy. - 2.2.44: Updated PrimaryTopNav to allow font-weight. - 2.2.43: Updated DownloadCard to allow size as string. diff --git a/package.json b/package.json index 6c1c246..50fa2a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@conduction/components", - "version": "2.2.46", + "version": "2.2.47", "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)", "main": "lib/index.js", "scripts": { diff --git a/src/components/container/Container.module.css b/src/components/container/Container.module.css index 73ff277..1e0ba0d 100644 --- a/src/components/container/Container.module.css +++ b/src/components/container/Container.module.css @@ -7,6 +7,6 @@ width: 100%; margin-inline: auto; box-sizing: border-box; - padding-inline: var(--conduction-container-padding-inline); + padding-inline: var(--conduction-container-padding-inline, unset); max-width: var(--conduction-container-max-width); } diff --git a/src/components/topNav/primaryTopNav/PrimaryTopNav.module.css b/src/components/topNav/primaryTopNav/PrimaryTopNav.module.css index c58947c..17f1abd 100644 --- a/src/components/topNav/primaryTopNav/PrimaryTopNav.module.css +++ b/src/components/topNav/primaryTopNav/PrimaryTopNav.module.css @@ -149,7 +149,7 @@ display: block; overflow: hidden; max-width: 100%; - white-space: wrap; + white-space: nowrap; } .primary .link:not(.currentLink) {