Skip to content

Commit db6ab73

Browse files
committed
v1.2.38 - Keyboard handling updated for outline panel
1 parent a7c208e commit db6ab73

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
<link href="https://ik.imagekit.io/n0uvizrukm2/chaibuilder_com/favicon-32x32_8n9AUpFnH.png" rel="icon" type="image/svg+xml" />
66
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
77
<title>Chai Builder</title>
8+
<style>
9+
.jotai-devtools-trigger-button{
10+
right: 3px !important;
11+
left: auto !important;
12+
}
13+
</style>
814
</head>
915
<body>
1016
<div id="root"></div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Suraj Air",
66
"license": "BSD-3-Clause",
77
"homepage": "https://chaibuilder.com",
8-
"version": "1.2.37",
8+
"version": "1.2.38",
99
"type": "module",
1010
"repository": {
1111
"type": "git",

src/core/components/HotKeys.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import {
22
Badge,
3-
Button,
43
Dialog,
54
DialogContent,
65
DialogHeader,
@@ -32,9 +31,9 @@ export const HotKeys = memo(() => {
3231
<DialogTrigger>
3332
<Tooltip>
3433
<TooltipTrigger>
35-
<Button size="sm" className="w-10" variant="outline">
34+
<div className="flex w-10 items-center justify-center">
3635
<KeyboardIcon />
37-
</Button>
36+
</div>
3837
</TooltipTrigger>
3938
<TooltipContent>
4039
<p>{t("Keyboard shortcuts")}</p>

0 commit comments

Comments
 (0)