Skip to content

Commit 08ec7f5

Browse files
fix: address PR feedback on trademark disclaimer implementation
Co-Authored-By: Connor Prussin <connor@dourolabs.xyz>
1 parent 7750fa2 commit 08ec7f5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

apps/insights/src/components/PriceFeeds/index.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
}
8888
}
8989

90-
.trademarkDisclaimerSection {
90+
.trademarkDisclaimerCard {
9191
margin-top: theme.spacing(6);
9292
width: 100%;
9393

@@ -98,7 +98,7 @@
9898
display: flex;
9999
flex-flow: column nowrap;
100100
gap: theme.spacing(4);
101-
color: theme.color("text");
101+
color: theme.color("foreground");
102102
font-size: theme.font-size("sm");
103103
}
104104
}

apps/insights/src/components/PriceFeeds/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ export const PriceFeeds = async () => {
124124
/>
125125
</UnstyledTabPanel>
126126
</UnstyledTabs>
127-
<div className={styles.trademarkDisclaimerSection}>
128-
<Card variant="tertiary" title="Trademark Disclaimer">
127+
<Card className={styles.trademarkDisclaimerCard} variant="tertiary" title="Trademark Disclaimer">
129128
<div className={styles.trademarkDisclaimerContent}>
130129
<p>
131130
The Pyth Network name, logo, and all related names, logos, product
@@ -144,7 +143,6 @@ export const PriceFeeds = async () => {
144143
</p>
145144
</div>
146145
</Card>
147-
</div>
148146
</div>
149147
);
150148
};

0 commit comments

Comments
 (0)