{ handleClick(true); handleSubmit(true)}}>
diff --git a/src/components/Feedback/styles.module.scss b/src/components/Feedback/styles.module.scss
index 0c7b45daf63..d69b12ffc03 100644
--- a/src/components/Feedback/styles.module.scss
+++ b/src/components/Feedback/styles.module.scss
@@ -11,8 +11,8 @@
}
.Button {
- width: 40px;
- height: 40px;
+ width: 25px;
+ height: 25px;
display: flex;
align-items: center;
justify-content: center;
diff --git a/src/theme/DocItem/TOC/Desktop/index.js b/src/theme/DocItem/TOC/Desktop/index.js
index f8103d889c7..b580d0d6472 100644
--- a/src/theme/DocItem/TOC/Desktop/index.js
+++ b/src/theme/DocItem/TOC/Desktop/index.js
@@ -14,7 +14,7 @@ export default function DocItemTOCDesktop() {
const {toc, frontMatter} = useDoc();
const [isClosed, setClosed] = useState(() => {
if (typeof window !== 'undefined') {
- return window.sessionStorage.getItem('doc-cloud-card-banner') === 'closed';
+ return window.localStorage.getItem('doc-cloud-card-banner') === 'closed';
}
return false;
});
@@ -30,10 +30,10 @@ export default function DocItemTOCDesktop() {
const cacheKey = 'doc-cloud-card-banner-attributes';
let attributes = {};
- // Get cached ad data from session
- if (window.sessionStorage.getItem(cacheKey)) {
+ // Get cached ad data from local storage
+ if (window.localStorage.getItem(cacheKey)) {
try {
- attributes = JSON.parse(window.sessionStorage.getItem(cacheKey));
+ attributes = JSON.parse(window.localStorage.getItem(cacheKey));
} catch (e) {
console.log('Failed to parse cached ad attributes', e);
}
@@ -54,7 +54,7 @@ export default function DocItemTOCDesktop() {
if (data && typeof data === 'object' && data.hasOwnProperty('attributes')) {
attributes = data.attributes;
- window.sessionStorage.setItem(cacheKey, JSON.stringify(attributes));
+ window.localStorage.setItem(cacheKey, JSON.stringify(attributes));
}
} catch (e) {
console.log('Failed to fetch ad content', e);
@@ -84,7 +84,7 @@ export default function DocItemTOCDesktop() {
maxHeadingLevel={frontMatter.toc_max_heading_level}
className={clsx(styles.docTOC, ThemeClassNames.docs.docTocDesktop)}
/>
-
+
= 7 ? 'left' : 'bottom'}/>
@@ -98,7 +98,7 @@ export default function DocItemTOCDesktop() {
onClick={() => {
setClosed(true);
galaxyOnClick('docs.sidebarCloudAdvert.advertDismissed');
- window.sessionStorage.setItem('doc-cloud-card-banner', 'closed');
+ window.localStorage.setItem('doc-cloud-card-banner', 'closed');
}}>
diff --git a/src/theme/DocItem/TOC/Desktop/styles.module.scss b/src/theme/DocItem/TOC/Desktop/styles.module.scss
index 4549d7aaf82..d8487afb2e3 100644
--- a/src/theme/DocItem/TOC/Desktop/styles.module.scss
+++ b/src/theme/DocItem/TOC/Desktop/styles.module.scss
@@ -32,22 +32,21 @@
}
.docCloudCardHeader h6 {
- margin-bottom: 16px;
font-weight: 600;
- font-size: 16px;
+ font-size: 13px;
}
.docCloudCardContent {
font-weight: 400;
- font-size: 14px;
- margin-bottom: 24px;
+ font-size: 12px;
}
.docCloudCardLink {
width: fit-content;
- padding: 0 16px;
+ padding: 0 12px;
white-space: nowrap;
+ font-size: 12px;
}
.docCloudCardLink:hover {
text-decoration: none;
@@ -74,5 +73,6 @@
padding: 1rem;
border-radius: 8px;
margin-bottom: 24px;
+ height: 200px;
}
}
From b5de5fd393e2baa29c29d2a1e5a8bacb3d902a02 Mon Sep 17 00:00:00 2001
From: Shaun Struwig <41984034+Blargian@users.noreply.github.com>
Date: Mon, 15 Sep 2025 11:24:58 +0200
Subject: [PATCH 2/2] fix style
---
.../clickstack/deployment/hyperdx-clickhouse-cloud.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/use-cases/observability/clickstack/deployment/hyperdx-clickhouse-cloud.md b/docs/use-cases/observability/clickstack/deployment/hyperdx-clickhouse-cloud.md
index 9ead3943362..ca4175f12ee 100644
--- a/docs/use-cases/observability/clickstack/deployment/hyperdx-clickhouse-cloud.md
+++ b/docs/use-cases/observability/clickstack/deployment/hyperdx-clickhouse-cloud.md
@@ -67,6 +67,7 @@ curl -O https://raw.githubusercontent.com/ClickHouse/clickhouse-docs/refs/heads/
otel-cloud-config.yaml
+
```yaml file=docs/use-cases/observability/clickstack/deployment/_snippets/otel-cloud-config.yaml
receivers:
otlp/hyperdx:
@@ -217,6 +218,7 @@ service:
exporters: [clickhouse/rrweb]
```
+
Deploy the collector using the following Docker command, setting the respective environment variables to the connection settings recorded earlier and using the appropriate command below based on your operating system.