Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/user/events/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@ class Events extends Component {
<div className="navigation">
<Navigation event={this.state.event}></Navigation>
</div>
<div className="events">
<h1 className="event_header">All Events</h1>
<div className="news projects">
<p className="event_header">All Events</p>
<Grid container spacing={3}>
{Events}
</Grid>

<div className="event__pagination__container">
<div className="project__pagination__container">
<Pagination
showSizeChanger
onShowSizeChange={this.onShowSizeChange}
Expand Down
19 changes: 18 additions & 1 deletion src/user/events/events.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.organization {
display: flex;
min-height: 100vh;
height: auto;
font-family: Muli, sans-serif;
.navigation {
background: #f5f5f5;
Expand Down Expand Up @@ -163,3 +162,21 @@
color: #1a73ed;
}
}
.event__header {
font-family: Inter;
font-style: normal;
font-weight: normal;
font-size: 1.5em;
line-height: 1.3em;
color: #2D2D2D;
}



.event__pagination__container {
display: flex;
padding-top: 20px;
flex-direction: row;
justify-content: center;
align-items: center;
}
2 changes: 1 addition & 1 deletion src/user/projects/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class Projects extends Component {
<Navigation proj={this.state.proj}></Navigation>
</div>
<div className="news projects">
<p id="project__header">All Projects</p>
<p className="project__header">All Projects</p>
<div className={useStyles.root}>
<Grid container spacing={3}>
{Projects}
Expand Down
8 changes: 4 additions & 4 deletions src/user/projects/projects.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
}

.projects {
margin-top: 1vh;
margin-left: 4vw;
margin-right: 6vw;
padding: 20px;
margin-top: 2vh;
margin-left: 4vw;
p {
font-family: Inter;
font-style: normal;
Expand All @@ -23,7 +23,7 @@
line-height: 1.3em;
color: #2D2D2D;
}
#project_header {
.project__header {
font-family: Inter;
font-style: normal;
font-weight: normal;
Expand Down