Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo: className relatve to relative #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension/src/components/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default ({ setGpts, setLoading }: Props) => {
}

return (
<section className="relatve">
<section className="relative">
<div className="mx-auto w-full max-w-3xl px-5 py-2 md:px-4 pt-2 pb-4 md:pt-4 lg:pt-4 text-center">
<div className="flex items-center">
<input
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/Brand/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Props {

export default ({ count }: Props) => {
return (
<section className="relatve">
<section className="relative">
<div className="mx-auto w-full max-w-7xl px-4 mt-12 md:mt-24">
<div className="mx-auto w-full max-w-6xl text-center">
<h2 className="text-3xl font-bold md:text-7xl">
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default ({ setGpts, setLoading }: Props) => {
}, [content]);

return (
<section className="relatve mt-4 md:mt-8">
<section className="relative mt-4 md:mt-8">
<div className="mx-auto w-full max-w-2xl px-6 text-center">
<div className="flex items-center relative">
<input
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 @@ -4,7 +4,7 @@ import extensionSrc from "@/public/extension.png";

export default () => {
return (
<section className="relatve">
<section className="relative">
<div className="mx-auto w-full max-w-7xl px-5 py-2">
<h2 className="mb-4 text-3xl font-bold md:text-7xl text-center mt-8 md:mt-24">
Third-party GPTs shows on browser sidebar
Expand Down
2 changes: 1 addition & 1 deletion web/app/g/[uuid]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default async ({ params }: { params: { uuid: string } }) => {
const data = await getData(params.uuid);

return (
<section className="relatve">
<section className="relative">
<div className="mx-auto w-full max-w-7xl px-5 py-2">
{data && <GptsDetail gpts={data} />}
</div>
Expand Down