Skip to content

Commit

Permalink
adjust detail priview input
Browse files Browse the repository at this point in the history
  • Loading branch information
idoubi committed Nov 18, 2023
1 parent 2996cd3 commit b88c3a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion web/app/components/GptsDetail/Preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default ({ gpts }: Props) => {
{promptStarters.map((v: string, idx: number) => {
return (
<div key={idx} className="w-full md:w-1/2 px-1 py-1">
<p className="rounded-xl text-left text-gray-700 border border-gray-50 px-2 py-1 bg-white cursor-pointer text-sm truncate">
<p className="rounded-xl text-left text-gray-700 border border-gray-50 px-2 py-1 bg-white text-sm truncate">
{v}
</p>
</div>
Expand All @@ -59,6 +59,7 @@ export default ({ gpts }: Props) => {
)}
<input
type="text"
disabled
placeholder={`Message ${gpts.name}…`}
className="w-full mt-4 text-sm bg-white border border-primary rounded-xl px-4 py-2"
/>
Expand Down
2 changes: 1 addition & 1 deletion web/app/extension/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default () => {
<p className="mt-8">
<a
href="https://gpts-works.s3.us-west-1.amazonaws.com/extension/gpts-works_1.0.3.zip"
className="inline-block px-4 md:px-8 py-2 md:py-4 bg-slate-50 border border-primary rounded-md text-lg"
className="inline-block px-4 md:px-8 py-2 md:py-4 bg-slate-50 border border-primary rounded-xl text-lg"
>
<span className="flex items-center ">
<BsDownload className="mr-2 font-bold" />
Expand Down

0 comments on commit b88c3a2

Please sign in to comment.