-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from kessie2862/render-my-profile
Display Joined Missions in My Profile page.
- Loading branch information
Showing
4 changed files
with
89 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.profile-container { | ||
width: 50%; | ||
text-align: left; | ||
} | ||
|
||
.profile-container h2 { | ||
margin: 0 auto; | ||
width: 70%; | ||
} | ||
|
||
.joined-missions { | ||
width: 70%; | ||
margin: 20px auto; | ||
border: 1px solid #ccc; | ||
padding: 10px; | ||
} | ||
|
||
.joined-missions h3 { | ||
margin: 0 0 1.5rem 0; | ||
} | ||
|
||
.joined-missions ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.joined-missions li { | ||
border-bottom: 1px solid #ccc; | ||
padding: 1rem 0 1rem 1rem; | ||
margin-bottom: 1rem; | ||
font-weight: 600; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters