Skip to content

Commit

Permalink
feat: apply color to fancy brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
trulshj committed Nov 29, 2024
1 parent ddc8fae commit cb09f8f
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ export default async function CustomerCaseProjectInfo({
{t("variants").toUpperCase()}
</Text>
<div className={styles.varianter}>
<Text className={styles.preFancyCharacter}></Text>
<Text className={styles.preFancyCharacter}>
<span style={{ color: clientColors.color }}></span>
</Text>
{consultantsFirstNames.map((name) => (
<Text
key={name}
Expand All @@ -68,7 +70,9 @@ export default async function CustomerCaseProjectInfo({
{name}
</Text>
))}
<Text className={styles.afterFancyCharacter}></Text>
<Text className={styles.afterFancyCharacter}>
<span style={{ color: clientColors.color }}></span>
</Text>
</div>
</div>
)}
Expand Down

0 comments on commit cb09f8f

Please sign in to comment.