mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
Merge pull request #100 from duckietm/Dev
🆙 Fixed text beeing white in some containers for expl. Room-ads
This commit is contained in:
@@ -681,7 +681,7 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
|
|||||||
return (
|
return (
|
||||||
<Flex key={ index } alignItems="center" gap={ 1 }>
|
<Flex key={ index } alignItems="center" gap={ 1 }>
|
||||||
<Text small wrap align="end" className="col-span-4" variant="white">{ key }</Text>
|
<Text small wrap align="end" className="col-span-4" variant="white">{ key }</Text>
|
||||||
<NitroInput type="text" value={ furniValues[index] } onChange={ event => onFurniSettingChange(index, event.target.value) } />
|
<NitroInput type="text" className="text-black" style={ { color: '#000' } } value={ furniValues[index] } onChange={ event => onFurniSettingChange(index, event.target.value) } />
|
||||||
</Flex>);
|
</Flex>);
|
||||||
}) }
|
}) }
|
||||||
</div>
|
</div>
|
||||||
@@ -696,7 +696,7 @@ export const InfoStandWidgetFurniView: FC<InfoStandWidgetFurniViewProps> = props
|
|||||||
return (
|
return (
|
||||||
<Flex key={ index } alignItems="center" gap={ 1 }>
|
<Flex key={ index } alignItems="center" gap={ 1 }>
|
||||||
<Text small wrap align="end" className="col-span-4" variant="white">{ key }</Text>
|
<Text small wrap align="end" className="col-span-4" variant="white">{ key }</Text>
|
||||||
<NitroInput type="text" value={ customValues[index] } onChange={ event => onCustomVariableChange(index, event.target.value) } />
|
<NitroInput type="text" className="text-black" style={ { color: '#000' } } value={ customValues[index] } onChange={ event => onCustomVariableChange(index, event.target.value) } />
|
||||||
</Flex>);
|
</Flex>);
|
||||||
}) }
|
}) }
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user