Skip to content

Commit

Permalink
Apply flex to the inner previous-next boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasnaphas committed Mar 23, 2024
1 parent 3e1f20d commit 8cfa4b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend-create-haggadah/pages/read.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ export default function Read() {
<Box
id="previous-button-box"
sx={{
display: "flex",
flexDirection: "row",
justifyContent: "flex-start",
flex: "1 1 auto",
}}
Expand All @@ -154,6 +156,8 @@ export default function Read() {
<Box
id="page-number-box"
sx={{
display: "flex",
flexDirection: "row",
justifyContent: "center",
flex: "1 1 auto",
}}
Expand All @@ -163,6 +167,8 @@ export default function Read() {
<Box
id="next-button-box"
sx={{
display: "flex",
flexDirection: "row",
justifyContent: "flex-end",
flex: "1 1 auto",
}}
Expand Down

0 comments on commit 8cfa4b5

Please sign in to comment.