mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 03:42:10 +03:00
Merge remote-tracking branch 'origin/development' into sa/qr-purchase
This commit is contained in:
commit
610f17acbc
@ -33,7 +33,7 @@ export default EStyleSheet.create({
|
||||
},
|
||||
icon: {
|
||||
fontSize: 24,
|
||||
color: '$primaryDarkText',
|
||||
color: '$darkGrayBackground',
|
||||
},
|
||||
badge: {
|
||||
position: 'absolute',
|
||||
|
@ -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,
|
||||
|
@ -28,7 +28,7 @@ export const RangeSelector = ({range, onRangeChange}:RangeSelectorProps) => {
|
||||
...styles.rangeOptionWrapper,
|
||||
backgroundColor: EStyleSheet.value(
|
||||
item.value === range ?
|
||||
'$primaryDarkText':'$primaryLightBackground'
|
||||
'$darkGrayBackground':'$primaryLightBackground'
|
||||
)
|
||||
}}>
|
||||
<Text style={{
|
||||
|
@ -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"})}
|
||||
|
@ -68,7 +68,6 @@ export default EStyleSheet.create({
|
||||
color:'$pureWhite'
|
||||
} as TextStyle,
|
||||
saveButton:{
|
||||
backgroundColor:'$primaryBlue',
|
||||
width:150,
|
||||
paddingVertical:16,
|
||||
borderRadius:32,
|
||||
|
@ -79,7 +79,7 @@ export default EStyleSheet.create({
|
||||
backgroundColor: '$primaryBackgroundColor',
|
||||
},
|
||||
dotStyle: {
|
||||
backgroundColor: '$primaryDarkText',
|
||||
backgroundColor: '$darkGrayBackground',
|
||||
},
|
||||
chartContainer: {
|
||||
height: 112,
|
||||
|
@ -8,6 +8,7 @@ export default {
|
||||
$primaryLightBackground: '#2e3d51',
|
||||
$primaryGrayBackground: '#1e2835',
|
||||
$primaryWhiteLightBackground: '#2e3d51',
|
||||
$darkGrayBackground: '#526d91',
|
||||
$modalBackground: '#1e2835',
|
||||
$white: '#1e2835',
|
||||
$black: '#000000',
|
||||
|
@ -8,6 +8,7 @@ export default {
|
||||
$primaryLightBackground: '#f6f6f6',
|
||||
$primaryGrayBackground: '#f5f5f5',
|
||||
$primaryWhiteLightBackground: '#ffffff',
|
||||
$darkGrayBackground: '#788187',
|
||||
$modalBackground: '#ededed',
|
||||
$white: '#FFFFFF',
|
||||
$black: '#000000',
|
||||
|
Loading…
Reference in New Issue
Block a user