generated from warmachine028/github-super-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from ayushichoudhary-19/main
Fixed inconsistency in appearance of input field.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ const Subscribe = () => { | |
<span className="text-coral-red">Updates</span> & NewsLetters | ||
</h3> | ||
<div className="lg:max-w-[40%] w-full flex items-center max-sm:flex-col gap-5 p-2.5 sm:border sm:border-slate-gray rounded-full bg-none"> | ||
<input type="text" placeholder="[email protected]" className="input bg-none bg-[#1c1c1c]"/> | ||
<input type="text" placeholder="[email protected]" className="input bg-none bg-inherit focus:outline-none focus:border-coral-red"/> | ||
<div className="flex max-sm:justify-end items-center max-sm:w-full"> | ||
<Button fullWidth>Sign Up</Button> | ||
</div> | ||
|