@@ -3,7 +3,7 @@ import styles, { hw } from '@screens/Home/style'
33import { Canvas , LinearGradient , Rect , vec } from '@shopify/react-native-skia'
44import { useMutation } from '@tanstack/react-query'
55import { WeatherColors } from '@utils/colors'
6- import { Medium , Regular } from '@utils/fonts'
6+ import { F , Medium , Regular } from '@utils/fonts'
77import type { StackNav , Theme } from '@utils/types'
88import { tempConverter } from '@utils/utils'
99import React , { useCallback , useEffect } from 'react'
@@ -88,7 +88,7 @@ const WeatherWidget = React.memo<{ navigation: StackNav }>(({ navigation }) => {
8888 </ Canvas >
8989 < TouchableOpacity
9090 style = { [ hw , styles . shadow ] }
91- className = 'justify-between p-4'
91+ className = 'justify-between p-4 pb-3.5 '
9292 activeOpacity = { 0.7 }
9393 onPress = { ( ) => navigation . navigate ( 'Weather' ) }
9494 >
@@ -106,14 +106,14 @@ const WeatherWidget = React.memo<{ navigation: StackNav }>(({ navigation }) => {
106106 </ View >
107107 < View >
108108 < Icon width = { 25 } height = { 25 } color = { color . color } />
109- < Medium style = { [ color ] } className = 'mt-0.5 text-xs capitalize' >
109+ < Medium style = { [ color , F . F11 ] } className = 'mt-0.5 capitalize' >
110110 { w ? w . current . weather [ 0 ] ! . description : '__' }
111111 { /* {w.current.weather[0].icon} */ }
112112 </ Medium >
113113 { /* <Medium style={[color]}>
114114 H:{w ? tempConverter(w.daily[0].temp.max, currentUnit) : '__'}° L: {w ? tempConverter(w.daily[0].temp.min, currentUnit) : '__'}°
115115 </Medium> */ }
116- < Medium style = { [ color ] } className = 'text-xs' >
116+ < Medium style = { [ color , F . F11 ] } >
117117 { w ? tempConverter ( { temp : w . daily [ 0 ] ! . temp . min , unit : currentUnit } ) : '__' }
118118 { currentUnit === 'K' ? currentUnit : '° ' + currentUnit } /{ ' ' }
119119 { w ? tempConverter ( { temp : w . daily [ 0 ] ! . temp . max , unit : currentUnit } ) : '__' }
0 commit comments