Skip to content

Commit e95c8da

Browse files
committed
Updated Seeker Settings Menu
- Profile is now uploads. - Contact is now profile.
1 parent 704128a commit e95c8da

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

client/src/components/Settings/SeekerSettings.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,9 +449,9 @@ class SeekerSettings extends Component {
449449
this.state.profilePicture : profile
450450
}/>
451451
</div>
452-
<NavLink exact to="/settings">Profile</NavLink>
452+
<NavLink exact to="/settings">Uploads</NavLink>
453453
<NavLink to="/settings/security">Security</NavLink>
454-
<NavLink to="/settings/contact-information">Contact</NavLink>
454+
<NavLink to="/settings/contact-information">Profile</NavLink>
455455
<NavLink to="/settings/location">Location</NavLink>
456456
<NavLink to="/settings/social">Social</NavLink>
457457
</Navigation>
@@ -474,7 +474,7 @@ class SeekerSettings extends Component {
474474
type="file"
475475
accept=".png,.jpg,.jpeg"
476476
/>
477-
</Label>
477+
</Label>
478478

479479

480480
{this.state.resume && <a href={this.state.resume}>Download Resume</a>}

client/src/styles/SettingsStyle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const TextArea = styled.textarea`
100100
min-width:100%;
101101
max-width:100%;
102102
height: 60px;
103-
border-radius: 1px;
103+
border-radius: 25px;
104104
border: 1px solid lightgrey;
105105
&:disabled {
106106
border-color: white;

client/src/styles/SignIn_UpStyle.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ export const SignModalMain = styled(ModalMain)`
2121
display: flex;
2222
flex-direction: column;
2323
align-items: center;
24+
h2 {
25+
margin-bottom: 10px;
26+
}
2427
h4{
2528
border-bottom: .5px solid lightgrey;
2629
color: rgb(184,15,10);
@@ -37,14 +40,15 @@ export const Label = styled.label`
3740
padding-bottom: 10px;
3841
position: absolute;
3942
z-index: 10;
40-
top: 20px;
43+
top: 22px;
4144
left: 17px;
4245
cursor: text;
4346
color: #999;
4447
width: 100%;
4548
text-align: left;
4649
transition: transform .1s ease-out,-webkit-transform .1s ease-out;
4750
user-select: none;
51+
font-size: 15px;
4852
`;
4953

5054
export const Input = styled.input`

0 commit comments

Comments
 (0)