Chris Tate 5 月之前
父節點
當前提交
2f9173e3de

+ 3 - 3
examples/dashboard/app/page.tsx

@@ -92,7 +92,7 @@ function DashboardContent() {
               border: '1px solid var(--border)',
               borderRadius: 'var(--radius)',
               color: 'var(--foreground)',
-              fontSize: 15,
+              fontSize: 16,
               outline: 'none',
             }}
           />
@@ -105,7 +105,7 @@ function DashboardContent() {
               color: 'var(--background)',
               border: 'none',
               borderRadius: 'var(--radius)',
-              fontSize: 15,
+              fontSize: 16,
               fontWeight: 500,
               opacity: isStreaming || !prompt.trim() ? 0.5 : 1,
             }}
@@ -122,7 +122,7 @@ function DashboardContent() {
                 color: 'var(--muted)',
                 border: '1px solid var(--border)',
                 borderRadius: 'var(--radius)',
-                fontSize: 15,
+                fontSize: 16,
               }}
             >
               Clear

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

@@ -22,7 +22,7 @@ export function DatePicker({ element }: ComponentRenderProps) {
           border: '1px solid var(--border)',
           background: 'var(--card)',
           color: 'var(--foreground)',
-          fontSize: 14,
+          fontSize: 16,
           outline: 'none',
         }}
       />

+ 1 - 1
examples/dashboard/components/ui/select.tsx

@@ -27,7 +27,7 @@ export function Select({ element }: ComponentRenderProps) {
           border: '1px solid var(--border)',
           background: 'var(--card)',
           color: 'var(--foreground)',
-          fontSize: 14,
+          fontSize: 16,
           outline: 'none',
         }}
       >

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

@@ -42,7 +42,7 @@ export function TextField({ element }: ComponentRenderProps) {
           border: errors.length > 0 ? '1px solid #ef4444' : '1px solid var(--border)',
           background: 'var(--card)',
           color: 'var(--foreground)',
-          fontSize: 14,
+          fontSize: 16,
           outline: 'none',
         }}
       />