Change website background colour to make it look pleasing to the eyes

This commit is contained in:
Ray 2023-12-28 02:34:52 +00:00 committed by GitHub
parent e6b8047001
commit 1c882e6f39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 67 additions and 69 deletions

View File

@ -26,8 +26,6 @@ import './App.css'
import { FSContext } from ".//contexts/FSContext.js"
// declare variables
export function MyForm(props) {
@ -60,6 +58,7 @@ export function MyForm(props) {
// Create form for user to imput data
return (
<div style={{ backgroundColor: '#FBC40E' }}>
<Form onSubmit={submitHandler}>
<Form.Group>
<Form.Label style={{ fontSize: '40px' }}>Ray Ray's Word Bingo</Form.Label>
@ -126,8 +125,7 @@ export function MyForm(props) {
</Col>
</Form.Group>
</Form>
// Create a button to submit the form data to Firebase
</div>
);
}
export default MyForm;