Skip to content

Instantly share code, notes, and snippets.

@aditodkar
Created November 14, 2018 06:06
Show Gist options
  • Save aditodkar/0c40c2cc875581d0cd1c9eb4f1751699 to your computer and use it in GitHub Desktop.
Save aditodkar/0c40c2cc875581d0cd1c9eb4f1751699 to your computer and use it in GitHub Desktop.
.ui.form.formStyle {
margin-left: 300px ;
margin-top: 100px ;
width: 550px ;
height: 400px;
}
.ui.button.buttonStyle {
border-radius: 18px;
width: 200px;
background-color:#3865FE;
}
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