added dimmed color for location name

This commit is contained in:
Ishan Parlikar
2023-07-20 23:01:32 +05:30
parent d35667fab2
commit ec34339e16

View File

@@ -118,7 +118,7 @@ function WeatherTile({ widget }: WeatherTileProps) {
{widget.properties.displayCityName && (
<Group noWrap spacing="5px" align="center">
<IconCurrentLocation height={15} width={15} />
<Text style={{ whiteSpace: 'nowrap' }}>{widget.properties.location.name}</Text>
<Text color='dimmed' style={{ whiteSpace: 'nowrap' }}>{widget.properties.location.name}</Text>
</Group>
)}
</Stack>