Skip to content

Commit 0d817a5

Browse files
Merge pull request #3859 from OneCommunityGlobal/venkataramanan_fix_projects_border_issue
Venkataramanan. Fix: Border issue in Projects page
2 parents 93cbe29 + 77e2ae8 commit 0d817a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Projects/Projects.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ const projectFetchStatus = useSelector(state => state.allProjects.status);
283283
return (
284284
<>
285285
<div className={darkMode ? 'bg-oxford-blue text-light' : ''}>
286-
<div className="container py-3 border border-secondary rounded" style={darkMode ? { backgroundColor: '#1B2A41' } : {}}>
286+
<div className="container" style={darkMode ? { backgroundColor: '#1B2A41' } : {}}>
287287
{fetching || !fetched ? <Loading align="center" /> : null}
288288
<div className="d-flex justify-content-center align-items-center">
289289
<h3 style={{ display: 'inline-block', marginRight: 10 }}>Projects</h3>

0 commit comments

Comments
 (0)