diff --git a/frontend/src/components/upcomingevents/BookLabel.js b/frontend/src/components/upcomingevents/BookLabel.js index 39b7cc6..dd759bd 100644 --- a/frontend/src/components/upcomingevents/BookLabel.js +++ b/frontend/src/components/upcomingevents/BookLabel.js @@ -45,13 +45,13 @@ const BookLabel = ({ session }) => { {session ? (
-

Title: {bookIdToTitle(session.chosen_book)}

+

Title: {bookIdToTitle(session.chosen_book)}

-

Author: {bookIdToAuthors(session.chosen_book)}

+

Author: {bookIdToAuthors(session.chosen_book)}

-

+

Year Published: {bookIdToYearPublished(session.chosen_book)}

diff --git a/frontend/src/components/upcomingevents/SessionLabel.js b/frontend/src/components/upcomingevents/SessionLabel.js index a51e9ae..87466a4 100644 --- a/frontend/src/components/upcomingevents/SessionLabel.js +++ b/frontend/src/components/upcomingevents/SessionLabel.js @@ -7,9 +7,9 @@ const SessionLabel = ({ session, membersAttending }) => {
{session ? (
-

Date: {session.date}

-

Location: {session.location}

-
+

Date: {session.date}

+

Location: {session.location}

+
Members Attending: {membersAttending}
diff --git a/frontend/src/components/upcomingevents/booklabel.css b/frontend/src/components/upcomingevents/booklabel.css index ff7827c..aec7e1a 100644 --- a/frontend/src/components/upcomingevents/booklabel.css +++ b/frontend/src/components/upcomingevents/booklabel.css @@ -3,7 +3,7 @@ width: 451px; } - .label .how-innovation-works { +.label .how-innovation-works { color: #000000; font-family: "Roboto-Bold", Helvetica; font-size: 25px; @@ -13,4 +13,24 @@ width: 451px; } +.sessions-font { + + color: #000000; + font-family: "Roboto-Bold", Helvetica; + font-size: 12px; + font-weight: 700; + letter-spacing: 0.7px; + margin-left: 40px; + margin-top: 60px; + width: 200px; + + } + +.upcoming-bookclub-book-information { + + text-align: center; + display: grid; + align-items: center; + +} \ No newline at end of file diff --git a/frontend/src/components/upcomingevents/box.css b/frontend/src/components/upcomingevents/box.css index 962d843..ad0c08f 100644 --- a/frontend/src/components/upcomingevents/box.css +++ b/frontend/src/components/upcomingevents/box.css @@ -1,6 +1,8 @@ .box { height: 293px; width: 586px; + display: grid; + align-items: center; } .box .book-information { @@ -9,4 +11,7 @@ position: fixed; top: 0; width: 586px; + display: grid; + align-items: center; + justify-content: center; } \ No newline at end of file diff --git a/frontend/src/components/upcomingevents/sessionlabel.css b/frontend/src/components/upcomingevents/sessionlabel.css index 306a779..98e052b 100644 --- a/frontend/src/components/upcomingevents/sessionlabel.css +++ b/frontend/src/components/upcomingevents/sessionlabel.css @@ -12,4 +12,17 @@ line-height: 52.5px; width: 472px; } - \ No newline at end of file + + + .sessions-font { + + color: #000000; + font-family: "Roboto-Bold", Helvetica; + font-size: 12px; + font-weight: 700; + letter-spacing: 0.7px; + margin-left: 40px; + margin-top: 60px; + width: 200px; + + } \ No newline at end of file