Skip to content
Closed
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
4 changes: 0 additions & 4 deletions src/components/Header/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
font-size: medium;
}

.card {
margin-left: 35px;
margin-right: 50px;
}

.card-wrapper {
padding-top: 1rem;
Expand Down
10 changes: 7 additions & 3 deletions src/components/LeaderBoard/Leaderboard.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.leaderboard {
font-size: 1rem;
min-width: 500px;
} /*1rem = 16px*/

.my-custom-scrollbar {
Expand All @@ -15,7 +16,8 @@
border-top-color: rgb(222, 226, 230);
}

.leaderboard tbody tr td, thead tr th {
.leaderboard tbody tr td,
.leaderboard thead tr th {
text-align: left !important;
}

Expand Down Expand Up @@ -47,6 +49,8 @@
}




/* Small devices (landscape phones, 544px and up) */
@media (max-width: 544px) {
.leaderboard {
Expand All @@ -55,8 +59,8 @@

.my-custom-scrollbar {
max-height: 500px;
overflow: scroll;
margin-bottom: 1rem;
overflow: auto;
margin-bottom: 50px;
}

.leaderboard thead th {
Expand Down
614 changes: 311 additions & 303 deletions src/components/LeaderBoard/Leaderboard.jsx

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/components/Projects/AddProject/AddProject.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ const AddProject = (props) => {
borderColor: 'green',
color: 'green',
borderWidth: '1px',
marginBottom: '10px'
}}
>
<i className="fa fa-plus" aria-hidden="true"></i> Add New Project
Expand Down
4 changes: 2 additions & 2 deletions src/components/Projects/Overview/Overview.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
border-radius: 8px;
height: 40px;
width: 300px;
margin: 10px;
/* margin: 10px; */
padding: 10px;
}

Expand All @@ -20,7 +20,7 @@
border-radius: 8px;
height: 40px;
width: 300px;
margin: 10px;
/* margin: 10px; */
padding: 10px;
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/Projects/Projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ const Projects = function(props) {
return (
<>
<div className={darkMode ? 'bg-oxford-blue text-light' : ''}>
<div className={`container py-3 ${darkMode ? 'bg-yinmn-blue-light text-light' : ''}`}>
<div className={`container py-3 mb-5 ${darkMode ? 'bg-yinmn-blue-light text-light' : ''}`}>
{fetching || !fetched ? <Loading align="center" /> : null}
<div className="d-flex align-items-center">
<div className="d-flex align-items-center flex-wrap w-100">
<h3 style={{ display: 'inline-block', marginRight: 10 }}>Projects</h3>
<EditableInfoModal
areaName="projectsInfoModal"
Expand Down
Loading