Merge remote-tracking branch 'origin/development' into sa/qr-purchase

This commit is contained in:
noumantahir 2022-08-16 22:41:41 +05:00
commit 610f17acbc
8 changed files with 7 additions and 7 deletions

View File

@ -33,7 +33,7 @@ export default EStyleSheet.create({
},
icon: {
fontSize: 24,
color: '$primaryDarkText',
color: '$darkGrayBackground',
},
badge: {
position: 'absolute',

View File

@ -11,7 +11,7 @@ export default EStyleSheet.create({
minWidth: '$deviceWidth / 1.9',
height: 44,
borderRadius: 30,
backgroundColor: '$primaryDarkText',
backgroundColor: '$darkGrayBackground',
margin: 5,
shadowOffset: {
height: 5,

View File

@ -28,7 +28,7 @@ export const RangeSelector = ({range, onRangeChange}:RangeSelectorProps) => {
...styles.rangeOptionWrapper,
backgroundColor: EStyleSheet.value(
item.value === range ?
'$primaryDarkText':'$primaryLightBackground'
'$darkGrayBackground':'$primaryLightBackground'
)
}}>
<Text style={{

View File

@ -7,7 +7,6 @@ import styles from './postOptionsModalStyles';
import ThumbSelectionContent from './thumbSelectionContent';
import {View as AnimatedView} from 'react-native-animatable';
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
import EStyleSheet from 'react-native-extended-stylesheet';
const REWARD_TYPES = [
{
@ -224,7 +223,7 @@ const PostOptionsModal = forwardRef(({
</KeyboardAwareScrollView>
<MainButton
style={{...styles.saveButton, backgroundColor:EStyleSheet.value(disableDone?'$primaryDarkGray':'$primaryBlue') }}
style={{...styles.saveButton }}
isDisable={disableDone}
onPress={_onDonePress}
text={intl.formatMessage({id:"editor.done"})}

View File

@ -68,7 +68,6 @@ export default EStyleSheet.create({
color:'$pureWhite'
} as TextStyle,
saveButton:{
backgroundColor:'$primaryBlue',
width:150,
paddingVertical:16,
borderRadius:32,

View File

@ -79,7 +79,7 @@ export default EStyleSheet.create({
backgroundColor: '$primaryBackgroundColor',
},
dotStyle: {
backgroundColor: '$primaryDarkText',
backgroundColor: '$darkGrayBackground',
},
chartContainer: {
height: 112,

View File

@ -8,6 +8,7 @@ export default {
$primaryLightBackground: '#2e3d51',
$primaryGrayBackground: '#1e2835',
$primaryWhiteLightBackground: '#2e3d51',
$darkGrayBackground: '#526d91',
$modalBackground: '#1e2835',
$white: '#1e2835',
$black: '#000000',

View File

@ -8,6 +8,7 @@ export default {
$primaryLightBackground: '#f6f6f6',
$primaryGrayBackground: '#f5f5f5',
$primaryWhiteLightBackground: '#ffffff',
$darkGrayBackground: '#788187',
$modalBackground: '#ededed',
$white: '#FFFFFF',
$black: '#000000',