mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
fix className
This commit is contained in:
@@ -28,10 +28,10 @@ const Subscribe = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<form onSubmit={handleSubscribe} class="w-full max-w-sm">
|
||||
<div class="flex items-center border-b border-teal-500 py-2">
|
||||
<form onSubmit={handleSubscribe} className="w-full max-w-sm">
|
||||
<div className="flex items-center border-b border-teal-500 py-2">
|
||||
<input
|
||||
class="appearance-none bg-transparent border-none w-full text-gray-700 mr-3 py-1 px-2 leading-tight focus:outline-none"
|
||||
className="appearance-none bg-transparent border-none w-full text-gray-700 mr-3 py-1 px-2 leading-tight focus:outline-none"
|
||||
type="email"
|
||||
placeholder="janedoe@gmail.com"
|
||||
aria-label="Email"
|
||||
@@ -40,9 +40,6 @@ const Subscribe = () => {
|
||||
<Button variant="slim" className="mt-1 h-8 " loading={loading}>
|
||||
S'INSCRIRE
|
||||
</Button>
|
||||
{/* <button class="flex-shrink-0 bg-teal-500 hover:bg-teal-700 border-teal-500 hover:border-teal-700 text-sm border-4 text-white py-1 px-2 rounded" type="button">
|
||||
Sign Up
|
||||
</button> */}
|
||||
</div>
|
||||
</form>
|
||||
)
|
||||
|
Reference in New Issue
Block a user