diff --git a/src/app/components/drawer/components/drawer-header.tsx b/src/app/components/drawer/components/drawer-header.tsx index b36ddf4df06..edc172a5bbd 100644 --- a/src/app/components/drawer/components/drawer-header.tsx +++ b/src/app/components/drawer/components/drawer-header.tsx @@ -1,5 +1,4 @@ -import { Box, Flex } from '@stacks/ui'; -import { styled } from 'leather-styles/jsx'; +import { Box, Flex, styled } from 'leather-styles/jsx'; import { useHover } from 'use-events'; import { ArrowLeftIcon } from '@app/components/icons/arrow-left-icon'; @@ -29,14 +28,7 @@ export function DrawerHeader({ const [isHovered, bind] = useHover(); return ( - + {enableGoBack ? ( } @@ -44,7 +36,7 @@ export function DrawerHeader({ onAction={onGoBack} /> ) : ( - + )} {icon && icon} {title && {title}} diff --git a/src/app/components/text-input-field.tsx b/src/app/components/text-input-field.tsx index 9ac802f5ba8..a38bac23590 100644 --- a/src/app/components/text-input-field.tsx +++ b/src/app/components/text-input-field.tsx @@ -119,6 +119,7 @@ export function TextInputField({ ref={inputRef || ref} _disabled={{ bg: color('bg') }} _focus={{ border: 'none' }} + _placeholder={{ color: 'colors.accent.text-subdued' }} autoComplete="off" border="none" data-testid={dataTestId} diff --git a/src/app/pages/receive/receive-modal.tsx b/src/app/pages/receive/receive-modal.tsx index 834c6fc1dce..723ded5ab4f 100644 --- a/src/app/pages/receive/receive-modal.tsx +++ b/src/app/pages/receive/receive-modal.tsx @@ -4,6 +4,7 @@ import { useLocation, useNavigate } from 'react-router-dom'; import { useClipboard } from '@stacks/ui'; import { HomePageSelectors } from '@tests/selectors/home.selectors'; import { Box, styled } from 'leather-styles/jsx'; +import { token } from 'leather-styles/tokens'; import get from 'lodash.get'; import { RouteUrls } from '@shared/route-urls'; @@ -62,7 +63,13 @@ export function ReceiveModal({ type = 'full' }: ReceiveModalProps) { ); return ( - navigate('../')}> + navigate('../')} + > {title}