Created
November 14, 2018 06:06
-
-
Save aditodkar/0c40c2cc875581d0cd1c9eb4f1751699 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.ui.form.formStyle { | |
margin-left: 300px ; | |
margin-top: 100px ; | |
width: 550px ; | |
height: 400px; | |
} | |
.ui.button.buttonStyle { | |
border-radius: 18px; | |
width: 200px; | |
background-color:#3865FE; | |
} |
This file contains hidden or 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
import React from "react"; | |
import { Button, Form, Header } from "semantic-ui-react"; | |
import './loginForm.css'; | |
const LoginForm = () => ( | |
<Form className='formStyle'> | |
<Button className='buttonStyle'>Login</Button> | |
</Form> | |
); | |
export default LoginForm; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment