Skip to content

Commit d3c081d

Browse files
authored
Merge pull request #57 from pchalasani/claude/fix-starlight-mobile-overflow-agafI
2 parents ffec59e + e2698e5 commit d3c081d

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

docs-site/src/content/docs/getting-started/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ description: >-
88
import { Steps } from "@astrojs/starlight/components";
99

1010
<style>{`
11+
table {
12+
display: block;
13+
overflow-x: auto;
14+
}
1115
table td:first-child,
1216
table th:first-child {
1317
white-space: nowrap;

docs-site/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hero:
1313
<img
1414
src="/claude-code-tools/assets/demo.gif"
1515
alt="claude-code-tools demo"
16-
style="max-width:480px;border-radius:8px;"
16+
style="width:100%;max-width:480px;border-radius:8px;"
1717
/>
1818
actions:
1919
- text: Get Started

docs-site/src/content/docs/tools/aichat/resume.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ title: "Resume"
55
import { Tabs, TabItem } from '@astrojs/starlight/components';
66

77
<style>{`
8+
table {
9+
display: block;
10+
overflow-x: auto;
11+
}
812
table td:first-child,
913
table th:first-child {
1014
white-space: nowrap;

0 commit comments

Comments
 (0)