File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import * as React from 'react'
44import * as glamorous from 'glamorous-native'
55import * as c from '../components/colors'
66import sample from 'lodash/sample'
7+ import { CELL_MARGIN } from './button'
78
89const messages = [
910 '☃️ An Unofficial App Project ☃️' ,
@@ -17,7 +18,11 @@ const messages = [
1718
1819export function UnofficialAppNotice ( ) {
1920 return (
20- < glamorous . View justifyContent = "center" marginHorizontal = { 10 } >
21+ < glamorous . View
22+ justifyContent = "center"
23+ marginBottom = { CELL_MARGIN }
24+ marginHorizontal = { CELL_MARGIN }
25+ >
2126 < glamorous . View backgroundColor = "rgba(0,0,0,0.05)" borderRadius = { 7 } >
2227 < glamorous . Text color = { c . black25Percent } padding = { 8 } textAlign = "center" >
2328 { sample ( messages ) }
You can’t perform that action at this time.
0 commit comments