@hedia/recommendation-screen 2.1.53-alpha.1 → 2.1.53-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -88,7 +88,6 @@ export declare const stylesModal: {
|
|
|
88
88
|
justifyContent: "center";
|
|
89
89
|
};
|
|
90
90
|
container: {
|
|
91
|
-
backgroundColor: string;
|
|
92
91
|
justifyContent: "center";
|
|
93
92
|
};
|
|
94
93
|
textTittleMessage: {
|
|
@@ -186,6 +185,7 @@ export declare const stylesModal: {
|
|
|
186
185
|
okButton: {
|
|
187
186
|
backgroundColor: string;
|
|
188
187
|
justifyContent: "flex-start";
|
|
188
|
+
marginTop: number;
|
|
189
189
|
borderRadius: number;
|
|
190
190
|
borderWidth: number;
|
|
191
191
|
borderColor: string;
|
|
@@ -115,7 +115,7 @@ export default class RecommendationModal extends React.Component {
|
|
|
115
115
|
render() {
|
|
116
116
|
const { isVisible } = this.props;
|
|
117
117
|
const { firstPageVisible } = this.state;
|
|
118
|
-
return (<ReactNativeModal isVisible={isVisible} style={stylesModal.modalStyle} backdropColor={colors.
|
|
118
|
+
return (<ReactNativeModal isVisible={isVisible} style={stylesModal.modalStyle} backdropColor={colors.darkBlue} backdropOpacity={1}>
|
|
119
119
|
<ScrollView contentContainerStyle={stylesModal.scrollViewContainer}>
|
|
120
120
|
{firstPageVisible ? this.firstPage() : this.secondPage()}
|
|
121
121
|
</ScrollView>
|
|
@@ -132,7 +132,6 @@ export const stylesModal = StyleSheet.create({
|
|
|
132
132
|
justifyContent: `center`,
|
|
133
133
|
},
|
|
134
134
|
container: {
|
|
135
|
-
backgroundColor: colors.semiDarkBlue,
|
|
136
135
|
justifyContent: `center`,
|
|
137
136
|
},
|
|
138
137
|
textTittleMessage: {
|
|
@@ -210,8 +209,9 @@ export const stylesModal = StyleSheet.create({
|
|
|
210
209
|
minWidth: 127,
|
|
211
210
|
},
|
|
212
211
|
okButton: {
|
|
213
|
-
backgroundColor: colors.
|
|
212
|
+
backgroundColor: colors.darkBlue,
|
|
214
213
|
justifyContent: `flex-start`,
|
|
214
|
+
marginTop: 24,
|
|
215
215
|
borderRadius: 50,
|
|
216
216
|
borderWidth: 1,
|
|
217
217
|
borderColor: colors.white,
|