Skip to content

Commit 3d4af20

Browse files
committed
Tweak classes
1 parent 5499ab4 commit 3d4af20

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

src/components/settings/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const Settings = (props: SettingsProps) => {
9393
w='320px'
9494
>
9595
<PopoverBody>
96-
<p className='text-ic-gray-600 font-medium'>Max Slippage</p>
96+
<p className='text-ic-gray-600 text-base font-medium'>Max Slippage</p>
9797
<Flex align='center' my='4'>
9898
<Toggle
9999
toggleState={toggleState}

src/components/settings/warning.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ export const Warning = (props: WarningProps) => (
1515
<Flex direction={'column'}>
1616
<Flex align={'center'} direction={'row'}>
1717
<ExclamationCircleIcon className='text-ic-yellow size-4' />
18-
<p className='text-ic-gray-600 ml-1.5 font-medium'>Slippage warning</p>
18+
<p className='text-ic-gray-600 ml-1.5 text-base font-medium'>
19+
Slippage warning
20+
</p>
1921
</Flex>
20-
<p className='text-ic-gray-600 mt-0.5 text-sm'>
22+
<p className='text-ic-gray-600 mt-0.5 text-sm font-normal'>
2123
{getTexts(props.lowSlippage)}
2224
</p>
2325
</Flex>

src/components/swap/components/quote-result/not-available.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ export const QuoteNotAvailable = ({ type }: QuoteNotAvailableProps) => {
2222
{type.toUpperCase()}
2323
</p>
2424
</Flex>
25-
<p className='text-ic-gray-300 font-medium'>{type} unavailable</p>
26-
<p className='text-ic-gray-300 text-sm'>
25+
<p className='text-ic-gray-300 text-base font-medium'>
26+
{type} unavailable
27+
</p>
28+
<p className='text-ic-gray-300 text-sm font-normal'>
2729
{`This token is not available for ${text}.`}
2830
</p>
2931
</Flex>

0 commit comments

Comments
 (0)