Skip to content

Commit cb6b6cc

Browse files
Venkataramanan VenkateswaranVenkataramanan Venkateswaran
authored andcommitted
Fix border and justification issues in profile page
1 parent 64ff1a0 commit cb6b6cc

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

src/components/Collaboration/Collaboration.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.container,
1+
.collaboration-container,
22
.job-landing .header img {
33
width: 60%;
44
max-width: 1000px;
@@ -8,7 +8,8 @@
88
.job-ad {
99
text-align: center;
1010
}
11-
.container {
11+
12+
.collaboration-container {
1213
margin: 0 auto 50px;
1314
flex-direction: column;
1415
align-items: center;

src/components/Collaboration/Collaboration.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function Collaboration() {
152152
<img src={OneCommunityImage} alt="One Community Logo" />
153153
</a>
154154
</div>
155-
<div className="container">
155+
<div className="collaboration-container">
156156
<nav className="job-navbar">
157157
<div className="job-navbar-left">
158158
<form className="search-form">
@@ -292,7 +292,7 @@ function Collaboration() {
292292
<img src={OneCommunityImage} alt="One Community Logo" />
293293
</a>
294294
</div>
295-
<div className="container">
295+
<div className="collaboration-container">
296296
<nav className="job-navbar">
297297
<div className="job-navbar-left">
298298
<form className="search-form">

src/components/UserProfile/TeamsAndProjects/UserProjectsTable.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
}
3333

3434
.projects-and-tasks-header {
35-
background-color: #e9ecef;
36-
border: 1px solid #ced4da;
3735
margin-bottom: 10px;
3836
}
3937

src/components/UserProfile/TimeEntryEditHistory.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const TimeEntryEditHistory = props => {
4040

4141
return (
4242
<>
43-
<p className={darkMode ? 'text-light' : ''}>Time Entry Edit History</p>
43+
<p className={darkMode ? 'text-light' : ''} style={{textAlign: 'left'}}>Time Entry Edit History</p>
4444
<table className={`table table-bordered ${darkMode ? 'text-light' : ''}`} width="100%">
4545
<thead>
4646
<tr style={tabletView ? {fontSize: "10px"} : {}}>

src/components/UserProfile/VolunteeringTimeTab/VolunteeringTimeTab.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ const ViewTab = props => {
451451
</Label>
452452
</Col>
453453
<Col md="6">
454-
<p className={`hours-totalTangible-thisWeek ${darkMode ? 'text-azure' : ''}`}>
454+
<p className={`hours-totalTangible-thisWeek ${darkMode ? 'text-azure' : ''}`} style={{textAlign: 'left'}}>
455455
{totalTangibleHoursThisWeek}
456456
</p>
457457
</Col>

0 commit comments

Comments
 (0)