parent
5f88d9f493
commit
4996af5cf0
4 changed files with 37 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||||
|
.KhabarName input{ |
||||||
|
border-radius: 6px; |
||||||
|
border: 1px solid #D1D1D1; |
||||||
|
height: 50px; |
||||||
|
width:30%; |
||||||
|
font-family: 'iranSans'; |
||||||
|
margin:10px; |
||||||
|
padding: 0px 20px; |
||||||
|
} |
||||||
|
.KhabarName input::placeholder{ |
||||||
|
color:#B8B8B8; |
||||||
|
} |
||||||
|
.KhabarName button{ |
||||||
|
height:50px; |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
import React from "react"; |
||||||
|
import Button from "../buttons/Button"; |
||||||
|
|
||||||
|
import './KhabarNameh.css' |
||||||
|
|
||||||
|
const KhabarNameh = () =>{ |
||||||
|
return( |
||||||
|
<div className="KhabarName"> |
||||||
|
<input type='email' placeholder="ایمیل خود را وارد کنید" /> |
||||||
|
<Button type="primary" model="default" title="ثبت نام رایگان" size="medium"/> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default KhabarNameh; |
Loading…
Reference in new issue