Skip to content

Commit a67509c

Browse files
Seungwoo321claude
andcommitted
fix: Dashboard Example 카드 높이 조정 및 vite.svg 참조 제거
- Dashboard Example의 Total Revenue 카드 높이를 h:2에서 h:3으로 증가 - 모든 브레이크포인트(lg, md, sm, xs, xxs)에 적용 - '+20.1% from last month' 텍스트가 카드 영역 밖으로 나가는 문제 해결 - 후속 아이템들의 y 위치 조정 (stats 높이 증가에 따른 레이아웃 재배치) - docs/index.html에서 존재하지 않는 vite.svg favicon 참조 제거 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 512fdfa commit a67509c

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

docs/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
76
<meta name="description" content="A modern grid layout system built with Tailwind CSS and full mobile touch support" />
87
<meta name="keywords" content="react, grid, layout, tailwind, css, mobile, touch, responsive" />

examples/showcase/index.tsx

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,39 +21,39 @@ export function ShowcaseExample() {
2121
// Responsive Dashboard Example
2222
const [dashboardLayouts, setDashboardLayouts] = useState<BreakpointLayouts>({
2323
lg: [
24-
{ id: 'stats', x: 0, y: 0, w: 3, h: 2 },
24+
{ id: 'stats', x: 0, y: 0, w: 3, h: 3 },
2525
{ id: 'chart', x: 3, y: 0, w: 6, h: 4 },
2626
{ id: 'recent', x: 9, y: 0, w: 3, h: 4 },
27-
{ id: 'table', x: 0, y: 2, w: 3, h: 4 },
27+
{ id: 'table', x: 0, y: 3, w: 3, h: 3 },
2828
{ id: 'timeline', x: 3, y: 4, w: 9, h: 3 },
2929
],
3030
md: [
31-
{ id: 'stats', x: 0, y: 0, w: 5, h: 2 },
31+
{ id: 'stats', x: 0, y: 0, w: 5, h: 3 },
3232
{ id: 'chart', x: 5, y: 0, w: 5, h: 4 },
3333
{ id: 'recent', x: 0, y: 4, w: 5, h: 3 },
3434
{ id: 'table', x: 5, y: 4, w: 5, h: 3 },
3535
{ id: 'timeline', x: 0, y: 7, w: 10, h: 3 },
3636
],
3737
sm: [
38-
{ id: 'stats', x: 0, y: 0, w: 6, h: 2 },
39-
{ id: 'chart', x: 0, y: 2, w: 6, h: 4 },
40-
{ id: 'recent', x: 0, y: 6, w: 6, h: 3 },
41-
{ id: 'table', x: 0, y: 9, w: 6, h: 3 },
42-
{ id: 'timeline', x: 0, y: 12, w: 6, h: 3 },
38+
{ id: 'stats', x: 0, y: 0, w: 6, h: 3 },
39+
{ id: 'chart', x: 0, y: 3, w: 6, h: 4 },
40+
{ id: 'recent', x: 0, y: 7, w: 6, h: 3 },
41+
{ id: 'table', x: 0, y: 10, w: 6, h: 3 },
42+
{ id: 'timeline', x: 0, y: 13, w: 6, h: 3 },
4343
],
4444
xs: [
45-
{ id: 'stats', x: 0, y: 0, w: 4, h: 2 },
46-
{ id: 'chart', x: 0, y: 2, w: 4, h: 4 },
47-
{ id: 'recent', x: 0, y: 6, w: 4, h: 3 },
48-
{ id: 'table', x: 0, y: 9, w: 4, h: 3 },
49-
{ id: 'timeline', x: 0, y: 12, w: 4, h: 3 },
45+
{ id: 'stats', x: 0, y: 0, w: 4, h: 3 },
46+
{ id: 'chart', x: 0, y: 3, w: 4, h: 4 },
47+
{ id: 'recent', x: 0, y: 7, w: 4, h: 3 },
48+
{ id: 'table', x: 0, y: 10, w: 4, h: 3 },
49+
{ id: 'timeline', x: 0, y: 13, w: 4, h: 3 },
5050
],
5151
xxs: [
52-
{ id: 'stats', x: 0, y: 0, w: 2, h: 2 },
53-
{ id: 'chart', x: 0, y: 2, w: 2, h: 4 },
54-
{ id: 'recent', x: 0, y: 6, w: 2, h: 3 },
55-
{ id: 'table', x: 0, y: 9, w: 2, h: 3 },
56-
{ id: 'timeline', x: 0, y: 12, w: 2, h: 3 },
52+
{ id: 'stats', x: 0, y: 0, w: 2, h: 3 },
53+
{ id: 'chart', x: 0, y: 3, w: 2, h: 4 },
54+
{ id: 'recent', x: 0, y: 7, w: 2, h: 3 },
55+
{ id: 'table', x: 0, y: 10, w: 2, h: 3 },
56+
{ id: 'timeline', x: 0, y: 13, w: 2, h: 3 },
5757
],
5858
})
5959

0 commit comments

Comments
 (0)