Skip to content

Commit

Permalink
fix(codestorm):event-updations
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Aug 26, 2023
1 parent 93505ee commit 107dcac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Pages/Events/GTA/CodeStorm/CodeStorm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ const CodeStorm = () => {
data.map((item) => (
<div className={styles.tv_card}>
<p className={styles.team_name}>
Team Name: {item.name}
<span>Team Name:</span> {item.name}
</p>
<p className={styles.team_code}>
Team Code: {item.code}
<span>Team Code:</span> {item.code}
</p>
<p className={styles.team_lead}>
Team Laed: {item.lead}
<span>Team Lead:</span> {item.lead}
</p>
<p className={styles.team_place}>
{item.domain} Domain: {item.place} Position
<span>{item.domain}</span> Domain: {item.place} Position
</p>
<p className={styles.team_members}>{item.team}</p>
<a
Expand Down
7 changes: 7 additions & 0 deletions src/Pages/Events/GTA/CodeStorm/CodeStorm.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,13 @@
margin: 0.25rem 0;
}

.team_name span,
.team_code span,
.team_lead span,
.team_place span {
color: #f78c40;
}

.team_link {
background-color: #f78c40;
color: white;
Expand Down

0 comments on commit 107dcac

Please sign in to comment.