Skip to content

Commit 992de91

Browse files
authored
Merge pull request #2559 from StoDevX/home-notice-padding
Padding to bottom of home notice
2 parents 4e92eb2 + fb0e6f0 commit 992de91

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

source/views/home/notice.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import * as React from 'react'
44
import * as glamorous from 'glamorous-native'
55
import * as c from '../components/colors'
66
import sample from 'lodash/sample'
7+
import {CELL_MARGIN} from './button'
78

89
const messages = [
910
'☃️ An Unofficial App Project ☃️',
@@ -17,7 +18,11 @@ const messages = [
1718

1819
export 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)}

0 commit comments

Comments
 (0)