Skip to content

Commit

Permalink
Merge pull request #17 from pheralb/next
Browse files Browse the repository at this point in the history
🚀 v0.2.2
  • Loading branch information
pheralb committed Feb 2, 2023
2 parents fb00df9 + 81fe978 commit e7183fa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/layout/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Header = () => {
title="Logo"
/>
<h3 className="text-xl font-medium">Superkey</h3>
<span className="text-sm font-bold dark:text-neutral-600 text-neutral-500">0.2.1</span>
<span className="text-sm font-bold dark:text-neutral-600 text-neutral-500">0.2.2</span>
</div>
</Link>
<div className="flex items-center space-x-2">
Expand Down
10 changes: 6 additions & 4 deletions packages/component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superkey",
"version": "0.2.1",
"version": "0.2.2",
"author": "@pheralb_",
"description": "A stylized command menu for React.",
"type": "module",
Expand All @@ -23,14 +23,16 @@
"dev": "concurrently \"swc ./src -d ./dist -w\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
"clean": "npx rimraf dist"
},
"dependencies": {
"clsx": "1.2.1"
},
"devDependencies": {
"@swc/cli": "0.1.60",
"@swc/core": "1.3.31",
"@swc/cli": "0.1.61",
"@swc/core": "1.3.32",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"chokidar": "3.5.3",
"concurrently": "7.6.0",
"clsx": "1.2.1",
"eslint": "8.33.0",
"eslint-config-custom": "*",
"react": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/component/src/components/command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Command = ({
>
<Dialog
onClose={onClose}
className="fixed inset-0 p-5 pt-[25vh] overflow-y-auto w-screen h-screen"
className="fixed inset-0 p-5 pt-[25vh] overflow-y-auto mx-auto max-w-xl h-screen"
>
<Transition.Child
enter="ease-out duration-300"
Expand Down

1 comment on commit e7183fa

@vercel
Copy link

@vercel vercel bot commented on e7183fa Feb 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

superkey – ./

superkey-pheralb.vercel.app
superkey-git-main-pheralb.vercel.app
superkey.vercel.app

Please sign in to comment.