|
@@ -170,11 +170,7 @@ const stylesheet = StyleSheet.create({
|
|
|
},
|
|
},
|
|
|
overlay: {
|
|
overlay: {
|
|
|
position: "absolute",
|
|
position: "absolute",
|
|
|
- zIndex: 98,
|
|
|
|
|
- bottom: 0,
|
|
|
|
|
- right: 0,
|
|
|
|
|
- left: 0,
|
|
|
|
|
- top: 0
|
|
|
|
|
|
|
+ zIndex: 98
|
|
|
},
|
|
},
|
|
|
hintTextIcon: {
|
|
hintTextIcon: {
|
|
|
},
|
|
},
|
|
@@ -229,7 +225,11 @@ export const useStyles = ({
|
|
|
marginLeft: inlineSpaces.subTitle
|
|
marginLeft: inlineSpaces.subTitle
|
|
|
} as Mutable<TextStyle>,
|
|
} as Mutable<TextStyle>,
|
|
|
overlay: {
|
|
overlay: {
|
|
|
- borderRadius: radiuses.form - 1
|
|
|
|
|
|
|
+ borderRadius: radiuses.form - 1,
|
|
|
|
|
+ bottom: -borders.line,
|
|
|
|
|
+ right: -borders.line,
|
|
|
|
|
+ left: -borders.line,
|
|
|
|
|
+ top: -borders.line
|
|
|
} as Mutable<ViewStyle>,
|
|
} as Mutable<ViewStyle>,
|
|
|
titleContainer: {
|
|
titleContainer: {
|
|
|
marginBottom: spaces.spacingSm
|
|
marginBottom: spaces.spacingSm
|
|
@@ -284,7 +284,7 @@ export const useStyles = ({
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if(customBorderColor) {
|
|
if(customBorderColor) {
|
|
|
- styles.container.borderColor = customBorderColor;
|
|
|
|
|
|
|
+ styles.content.borderColor = customBorderColor;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if(isFocused && !isDisabled) {
|
|
if(isFocused && !isDisabled) {
|
|
@@ -296,7 +296,7 @@ export const useStyles = ({
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if(customColor) {
|
|
if(customColor) {
|
|
|
- styles.container.backgroundColor = customColor;
|
|
|
|
|
|
|
+ styles.content.backgroundColor = customColor;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
return styles;
|
|
return styles;
|