Skip to content

Commit 8763bb3

Browse files
committed
[fix] 2 detail bugs
1 parent 327fbf8 commit 8763bb3

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

app/globals.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
@import "tailwindcss";
22
@import "tw-animate-css";
33

4+
.overflow-x-auto {
5+
overflow-x: auto;
6+
}
7+
48
@custom-variant dark (&:is(.dark *));
59

610
@theme inline {
@@ -44,8 +48,9 @@
4448
}
4549

4650
:root {
47-
--font-geist-sans: 'Geist Sans', ui-sans-serif, system-ui, sans-serif;
48-
--font-geist-mono: 'Geist Mono', ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
51+
--font-geist-sans: "Geist Sans", ui-sans-serif, system-ui, sans-serif;
52+
--font-geist-mono: "Geist Mono", ui-monospace, "Cascadia Code",
53+
"Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
4954
--radius: 0.625rem;
5055
--background: oklch(1 0 0);
5156
--foreground: oklch(0.145 0 0);

registry/new-york/blocks/rest-table/example.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
"use client";
22

3+
import { configure } from "mobx";
4+
35
import { columns } from "@/components/example/form";
46
import { i18n, repositoryStore } from "@/models/example";
57
import { RestTable } from "./rest-table";
68

9+
configure({ enforceActions: "never" });
10+
711
export const RestTableExample = () => (
812
<div className="w-full h-screen">
913
<RestTable

0 commit comments

Comments
 (0)