diff --git a/docs/pages/dms/client.mdx b/docs/pages/dms/client.mdx
index 8159c93..6936065 100644
--- a/docs/pages/dms/client.mdx
+++ b/docs/pages/dms/client.mdx
@@ -527,7 +527,7 @@ Set the `env` client option to `dev` while developing. Set it to `production` be
keystoreProviders |
`[StaticKeystoreProvider, NetworkKeystoreProvider,
- KeyGeneratorKeystoreProvider]`
+ KeyGeneratorKeystore Provider]`
|
Override the default behavior of how the Client creates a Keystore with
diff --git a/docs/styles.css b/docs/styles.css
index 2495c29..875a12d 100644
--- a/docs/styles.css
+++ b/docs/styles.css
@@ -172,4 +172,13 @@ small + ul.TabbedList {
background-color: rgba(255, 255, 255, 0.01); /* Slightly lighter on hover */
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.02);
border-color: var(--vocs-color-primary);
-}
\ No newline at end of file
+}
+
+/* Table styles */
+
+table th,
+table td {
+ border: 1px solid #7d7d7d;
+ vertical-align: top;
+ padding: 4px; /* Add padding for more margin */
+}
|