Skip to content

Commit

Permalink
fix: fix viewing key styles & FF-specific fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jurevans committed Nov 29, 2024
1 parent a85a714 commit 111b155
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/extension/src/App/Accounts/ViewingKey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ export const ViewingKey = (): JSX.Element => {
<>
<Stack full gap={GapPatterns.TitleContent}>
<PageHeader title="Viewing Key" />
<p className="text-white">
<p className="text-white max-w-84">
Your viewing key grants the holder access to all your balances and
transaction data. Please keep it secure to protect your data.
</p>
<Input
label="Viewing Key"
variant="ReadOnlyCopyText"
readOnly={true}
rows={9}
rows={10}
valueToDisplay={viewingKey}
value={viewingKey}
theme="secondary"
className="pb-20"
className="pb-20 [&_textarea]:py-2"
/>
</Stack>
<ActionButton size="md" onClick={() => navigate(-1)}>
Expand Down

0 comments on commit 111b155

Please sign in to comment.