diff --git a/README.md b/README.md
index ad3e0ac..1608425 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,7 @@
 
 - **Version 2.2 (breaking changes from 2.1.x)**
 
+  - 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 28e1f36..50fa2a1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@conduction/components",
-  "version": "2.2.45",
+  "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/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;
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) {