Skip to content

Commit 2f9173e

Browse files
committed
no zoom
1 parent b5ccdc9 commit 2f9173e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/dashboard/app/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function DashboardContent() {
9292
border: '1px solid var(--border)',
9393
borderRadius: 'var(--radius)',
9494
color: 'var(--foreground)',
95-
fontSize: 15,
95+
fontSize: 16,
9696
outline: 'none',
9797
}}
9898
/>
@@ -105,7 +105,7 @@ function DashboardContent() {
105105
color: 'var(--background)',
106106
border: 'none',
107107
borderRadius: 'var(--radius)',
108-
fontSize: 15,
108+
fontSize: 16,
109109
fontWeight: 500,
110110
opacity: isStreaming || !prompt.trim() ? 0.5 : 1,
111111
}}
@@ -122,7 +122,7 @@ function DashboardContent() {
122122
color: 'var(--muted)',
123123
border: '1px solid var(--border)',
124124
borderRadius: 'var(--radius)',
125-
fontSize: 15,
125+
fontSize: 16,
126126
}}
127127
>
128128
Clear

examples/dashboard/components/ui/date-picker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function DatePicker({ element }: ComponentRenderProps) {
2222
border: '1px solid var(--border)',
2323
background: 'var(--card)',
2424
color: 'var(--foreground)',
25-
fontSize: 14,
25+
fontSize: 16,
2626
outline: 'none',
2727
}}
2828
/>

examples/dashboard/components/ui/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function Select({ element }: ComponentRenderProps) {
2727
border: '1px solid var(--border)',
2828
background: 'var(--card)',
2929
color: 'var(--foreground)',
30-
fontSize: 14,
30+
fontSize: 16,
3131
outline: 'none',
3232
}}
3333
>

examples/dashboard/components/ui/text-field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function TextField({ element }: ComponentRenderProps) {
4242
border: errors.length > 0 ? '1px solid #ef4444' : '1px solid var(--border)',
4343
background: 'var(--card)',
4444
color: 'var(--foreground)',
45-
fontSize: 14,
45+
fontSize: 16,
4646
outline: 'none',
4747
}}
4848
/>

0 commit comments

Comments
 (0)