Skip to content

Commit 04dfd78

Browse files
committed
clean up
1 parent 582d1cc commit 04dfd78

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

packages/ui/src/components/widgets/TokenWidget/BuyTabContent.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,9 @@ const BuyTabContent: FC<BuyTabContentProps> = ({
262262
<TabsContent value="buy">
263263
<SectionContainer
264264
css={{
265-
backgroundColor: 'widget-background'
265+
backgroundColor: 'widget-background',
266+
border: '1px solid',
267+
borderColor: 'slate.4'
266268
}}
267269
id={'buy-token-section'}
268270
>

packages/ui/src/components/widgets/TokenWidget/SellTabContent.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,11 @@ const SellTabContent: FC<SellTabContentProps> = ({
345345
return (
346346
<TabsContent value="sell">
347347
<SectionContainer
348-
css={{ backgroundColor: 'widget-background' }}
348+
css={{
349+
backgroundColor: 'widget-background',
350+
border: '1px solid',
351+
borderColor: 'slate.4'
352+
}}
349353
id={'sell-token-section'}
350354
>
351355
<AmountSectionHeader

packages/ui/src/components/widgets/TokenWidget/widget/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ const TokenWidget: FC<TokenWidgetProps> = ({
12231223
'&[data-state="active"]': {
12241224
background: 'white',
12251225
borderRadius: '12px',
1226-
'--outlineColor': 'colors.gray.4',
1226+
'--outlineColor': 'colors.slate.4',
12271227
outline: '1px solid var(--outlineColor)',
12281228
color: 'gray12'
12291229
},
@@ -1256,7 +1256,7 @@ const TokenWidget: FC<TokenWidgetProps> = ({
12561256
'&[data-state="active"]': {
12571257
background: 'white',
12581258
borderRadius: '12px',
1259-
'--outlineColor': 'colors.gray.4',
1259+
'--outlineColor': 'colors.slate.4',
12601260
outline: '1px solid var(--outlineColor)',
12611261
color: 'gray12'
12621262
},

0 commit comments

Comments
 (0)