Skip to content

Commit

Permalink
Publish version v0.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Sep 17, 2024
1 parent 3a9dafe commit 03b16bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified app/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "Onlook",
"name": "@onlook/onlook",
"version": "0.0.24",
"version": "0.0.25",
"homepage": "https://onlook.dev",
"main": "dist-electron/main/index.js",
"description": "The first-ever devtool for designers",
Expand Down
6 changes: 3 additions & 3 deletions app/src/routes/editor/TopBar/ModeToggle/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ const ModeToggle = observer(() => {
initial={false}
animate={{
width: '50%',
x: mode === EditorMode.DESIGN ? '0%' : '100%'
x: mode === EditorMode.DESIGN ? '0%' : '100%',
}}
transition={{
type: 'tween',
ease: 'easeInOut',
duration: 0.3
duration: 0.3,
}}
/>
</div>
);
});

export default ModeToggle;
export default ModeToggle;

0 comments on commit 03b16bc

Please sign in to comment.