Skip to content

Commit

Permalink
Minor visual tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
musidlo committed Dec 21, 2024
1 parent e61c6fc commit e1a05f2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/app/components/FormFields/CoinField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
Fieldset,
getFontSize,
isWeb,
isTouchable,
Paragraph,
Select,
type SelectProps,
Expand Down Expand Up @@ -68,6 +69,9 @@ export const CoinField = ({
scaleIcon={1.5}
padding={0}
bc={'transparent'}
focusStyle={{
bc: 'transparent',
}}
iconAfter={
isOpen ? (
<ChevronUp color={'$primary'} $theme-light={{ color: '$color12' }} />
Expand Down Expand Up @@ -141,7 +145,13 @@ export const CoinField = ({
x: 0,
}}
>
<XStack als="flex-start" w={320} boc={'transparent'} f={1}>
<XStack
als="flex-start"
w={320}
$sm={{ w: isTouchable ? '100%' : 320 }}
boc={'transparent'}
f={1}
>
<Select.Group disabled={disabled} space="$0">
{/* <Select.Label>{label}</Select.Label> */}
{coins.map((coin, i) => {
Expand Down

0 comments on commit e1a05f2

Please sign in to comment.