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: Placeholder text align in newsletter section #628

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions src/components/NewsLetter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const NewsLetter = () => {
<div className="mt-5 w-full lg:w-7/12 py-1 md:py-2 rounded-xl relative flex items-center bg-white dark:bg-black">
<input
{...registerForm('email')}
className={`w-full rounded-md bg-background px-4 py-4 text-center border-none text-foreground outline-none ${
className={`w-full rounded-md bg-background px-6 py-4 border-none text-foreground outline-none ${
selectedInput === 'email' && 'border border-solid border-slate-50'
}`}
type="email"
Expand Down Expand Up @@ -145,4 +145,4 @@ const NewsLetter = () => {
);
};

export default NewsLetter;
export default NewsLetter;
Loading