Skip to content

Commit

Permalink
fix: right margin error
Browse files Browse the repository at this point in the history
  • Loading branch information
l1xnan committed Feb 6, 2025
1 parent 06ec749 commit ea3f824
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 58 deletions.
88 changes: 40 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
arrow = { version = "^53.0.0", features = ["prettyprint", "csv"] }
duckdb = { version = "1.1.1", git = "https://github.com/l1xnan/duckdb-rs.git", features = [
arrow = { version = "^54", features = ["prettyprint", "csv"] }
duckdb = { version = "1.2.0", git = "https://github.com/l1xnan/duckdb-rs.git", features = [
"extensions-full",
"bundled"
] }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "duckling",
"private": true,
"version": "0.0.39",
"version": "0.0.40",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/custom/TreeView3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const Inner = forwardRef<Virtualizer<HTMLDivElement, Element>, any>(
return (
<div
ref={parentRef}
className="h-full overflow-x-hidden overflow-y-scroll scrollbar-thin scrollbar-thumb-gray-300 scrollbar-track-gray-100 dark:scrollbar-track-[#2b2d30] dark:scrollbar-thumb-[#4d4e51]"
className="h-full overflow-auto overflow-x-hidden scrollbar-thin scrollbar-thumb-gray-300 scrollbar-track-gray-100 dark:scrollbar-track-[#2b2d30] dark:scrollbar-thumb-[#4d4e51]"
>
<div
ref={tree.registerElement}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/settings/AppSetting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function AppSettingDialog() {
}
>
<div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0">
<aside className="-mx-4 lg:w-1/5">
<aside className="mr-4 lg:w-1/5">
<SidebarNav items={items} activeKey={navKey} setKey={setNavKey} />
</aside>
<div className="flex-1 lg:max-w-2xl h-full">
Expand Down

0 comments on commit ea3f824

Please # to comment.