Various Style Updates from Johannes
This commit is contained in:
parent
62807c6665
commit
2634dfd94e
|
@ -151,7 +151,7 @@ function App() {
|
||||||
<StorageContext.Provider value={FBstorage}>
|
<StorageContext.Provider value={FBstorage}>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<Home items={data} />} />
|
<Route path="/" element={<Home items={data} />} />
|
||||||
<Route path="/about" element={<About greeting="Hey you, this is about page!" handler={saySomething} />} />
|
<Route path="/about" element={<About greeting="Hey you, this is about page!" />} />
|
||||||
<Route path="/contact" element={<Contact greeting="Hey you, this is contact page!" />} />
|
<Route path="/contact" element={<Contact greeting="Hey you, this is contact page!" />} />
|
||||||
<Route path="/signup" element={<Signup handler={signUp} />} />
|
<Route path="/signup" element={<Signup handler={signUp} />} />
|
||||||
<Route path="/signout" element={<Signout handler={logOut} />} />
|
<Route path="/signout" element={<Signout handler={logOut} />} />
|
||||||
|
|
|
@ -27,7 +27,7 @@ export function Header(props) {
|
||||||
|
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Navbar>
|
<Navbar className="mb-3">
|
||||||
<Container>
|
<Container>
|
||||||
<Navbar.Brand>Ray's Book Club</Navbar.Brand>
|
<Navbar.Brand>Ray's Book Club</Navbar.Brand>
|
||||||
<Nav>
|
<Nav>
|
||||||
|
|
|
@ -24,7 +24,7 @@ export function Detail(props) {
|
||||||
<Container>
|
<Container>
|
||||||
<Row>
|
<Row>
|
||||||
<Col>
|
<Col>
|
||||||
<h1>{bookData.book_title}</h1>
|
<h1 className="my-4">{bookData.book_title}</h1>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<Row>
|
<Row>
|
||||||
|
|
Loading…
Reference in New Issue