Skip to content

Commit bfeeb55

Browse files
committed
design nits
1 parent e3a3fbd commit bfeeb55

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

src/views/HelpPanel.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ export const HelpPanel = () => {
2020
slotHeader={
2121
<Styled.Header>
2222
<h3>{stringGetter({ key: STRING_KEYS.MIGRATION_HELP })}</h3>
23-
<Link
24-
withIcon
25-
href="https://www.dydx.foundation/how-to-bridge/"
26-
>
23+
<Link withIcon href="https://www.dydx.foundation/how-to-bridge/">
2724
{stringGetter({ key: STRING_KEYS.LEARN_MORE })}
2825
</Link>
2926
</Styled.Header>
@@ -105,6 +102,10 @@ const Styled: Record<string, AnyStyledComponent> = {};
105102

106103
Styled.Container = styled.div`
107104
text-align: center;
105+
106+
@media ${breakpoints.notTablet} {
107+
width: max-content;
108+
}
108109
`;
109110

110111
Styled.HelpCard = styled(Panel)`

src/views/PendingMigrationsTable.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ Styled.Table = styled(Table)`
274274

275275
Styled.InlineRow = styled.div`
276276
${layoutMixins.inlineRow}
277+
278+
img {
279+
height: 1.25em;
280+
}
277281
`;
278282

279283
Styled.VerticalSeparator = styled(VerticalSeparator)`

src/views/dialogs/AcknowledgeTermsDialog.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ Styled.Content = styled.div`
7878
Styled.Label = styled.span`
7979
display: inline-block;
8080
font: var(--font-base-book);
81+
color: var(--color-text-3);
8182
8283
a {
8384
display: inline-block;
85+
--link-color: var(--color-text-2);
8486
}
8587
`;

0 commit comments

Comments
 (0)