Skip to content

Commit

Permalink
Publish version v0.0.57 (#780)
Browse files Browse the repository at this point in the history
* Publish version v0.0.57

* Update styles
  • Loading branch information
Kitenite authored Nov 14, 2024
1 parent c91dbf5 commit 0efefa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/studio/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "Onlook",
"name": "@onlook/studio",
"version": "0.0.56",
"version": "0.0.57",
"homepage": "https://onlook.dev",
"main": "dist-electron/main/index.js",
"description": "The first-ever devtool for designers",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,12 @@ const TailwindInput = observer(() => {
className={cn(
'w-full text-xs break-normal p-1.5 focus-visible:ring-0 resize-none shadow-none border-[0.5px]',
'transition-colors duration-150',
instance ? 'rounded-t-none' : '',
editorEngine.style.mode === StyleMode.Root
? 'bg-background-tertiary text-foreground-active border-background-tertiary cursor-text'
: 'bg-background-secondary/75 text-foreground-muted border-background-secondary/75 group-hover:bg-background-tertiary/50 group-hover:text-foreground-active group-hover:border-background-tertiary/50 cursor-pointer',
instance
? 'rounded-t-none'
: 'bg-background-secondary/75 focus:bg-background-tertiary',
)}
placeholder="Add tailwind classes here"
value={rootHistory.present}
Expand Down

0 comments on commit 0efefa7

Please sign in to comment.