Skip to content

Commit

Permalink
Merge pull request #136 from lucyjemutai/ui-color
Browse files Browse the repository at this point in the history
have the headers have the same color for uniformity
  • Loading branch information
lucyjemutai authored May 30, 2024
2 parents 0cec6eb + fef045f commit 8e91b33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pages/orgs/[org]/domains/[domain]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ function OrgDomainsList() {
<TableContainer>
<Table sx={{ fontFamily: "Arial, sans-serif" }}>
<TableHead>
<TableRow sx={{ backgroundColor: "#f0f0f0" }}>
<TableRow sx={{ backgroundColor: "#D1EEF3" }}>
<TableCell
sx={{
fontWeight: "bold",
Expand Down Expand Up @@ -513,7 +513,7 @@ function OrgDomainsList() {
key={concept.id}
sx={{
":hover": {
backgroundColor: "#D1EEF3",
backgroundColor: "#f5f5f5",
cursor: "pointer",
},
transition:
Expand Down
4 changes: 2 additions & 2 deletions pages/orgs/[org]/sources/[source]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ function SourceConcepts() {
<div style={{ width: "100%" }}>
<TableContainer>
<Table>
<TableHead sx={{ backgroundColor: "#C4C6C6" }}>
<TableHead sx={{ backgroundColor: "#D1EEF3" }}>
<TableRow>
<TableCell
sx={{
Expand Down Expand Up @@ -461,7 +461,7 @@ function SourceConcepts() {
backgroundColor: "rgba(0, 0, 0, 0.1)",
},
...(selectedRows.includes(row.id) && {
backgroundColor: "#80DCEF",
backgroundColor: "#ECF8F8",
}),
}}
>
Expand Down

0 comments on commit 8e91b33

Please sign in to comment.