Skip to content

Commit ba89bd1

Browse files
committed
style: add colors to the company table
1 parent f48bc6f commit ba89bd1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/components/CompanyTable.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function CompanyTable() {
2727
</div>
2828
<div className={styles["table-data"]}>Subscription</div>
2929
<div className={styles["table-data"]}>July 11.07.2023</div>
30-
<div className={styles["table-data"]}>$624,00.90</div>
30+
<div className={styles["table-data"]} style={{ color: "#0042FD" }}>$624,00.90</div>
3131
<div className={styles["table-data"]}>
3232
<Badge status="green">Completed</Badge>
3333
</div>
@@ -46,9 +46,9 @@ export default function CompanyTable() {
4646
</div>
4747
<div className={styles["table-data"]}>Subscription</div>
4848
<div className={styles["table-data"]}>July 11.07.2023</div>
49-
<div className={styles["table-data"]}>$624,00.90</div>
49+
<div className={styles["table-data"]} style={{ color: "#00BEFD" }}>$624,00.90</div>
5050
<div className={styles["table-data"]}>
51-
<Badge status="yellow">Completed</Badge>
51+
<Badge status="yellow">IN COMPLETED</Badge>
5252
</div>
5353
</div>
5454
</div>

src/components/CompanyTable.module.css

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
align-items: center;
3838
}
3939

40+
.table-data {
41+
color: #8D99AB;
42+
}
43+
4044
.header__item {
4145
text-transform: uppercase;
4246
}
@@ -69,6 +73,8 @@
6973
}
7074
.company-brand-title h1 {
7175
margin-bottom: 10px;
76+
color: #000000;
77+
font-weight: 500;
7278
}
7379
.company-brand-title h3 {
7480
color: rgba(0, 0, 0, 0.3);

0 commit comments

Comments
 (0)