[RN] Recolor BottomSheet

This commit is contained in:
Bettenbuk Zoltan 2018-11-29 15:39:33 +01:00 committed by Saúl Ibarra Corretgé
parent 62e7fd7e8e
commit 506b15e3b5
2 changed files with 4 additions and 2 deletions

View File

@ -42,14 +42,14 @@ export const bottomSheetStyles = createStyleSheet({
*/ */
overlay: { overlay: {
...StyleSheet.absoluteFillObject, ...StyleSheet.absoluteFillObject,
backgroundColor: 'rgba(0, 0, 0, 0.8)' backgroundColor: 'rgba(127, 127, 127, 0.6)'
}, },
/** /**
* Bottom sheet's base style. * Bottom sheet's base style.
*/ */
sheet: { sheet: {
backgroundColor: ColorPalette.white, backgroundColor: 'rgb(0, 3, 6)',
flex: 1, flex: 1,
paddingHorizontal: 16, paddingHorizontal: 16,
paddingVertical: 8 paddingVertical: 8

View File

@ -155,6 +155,7 @@ const overflowMenuStyles = createStyleSheet({
* the {@code OverflowMenu}. * the {@code OverflowMenu}.
*/ */
icon: { icon: {
color: ColorPalette.white,
fontSize: 24 fontSize: 24
}, },
@ -163,6 +164,7 @@ const overflowMenuStyles = createStyleSheet({
* {@code OverflowMenu}. * {@code OverflowMenu}.
*/ */
label: { label: {
color: ColorPalette.white,
flexShrink: 1, flexShrink: 1,
fontSize: 16, fontSize: 16,
marginLeft: 32, marginLeft: 32,