Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions __tests__/containers/List/__snapshots__/List.stories.storyshot

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/containers/List/ListContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import scrollPersistTaps from '../../lib/methods/helpers/scrollPersistTaps';

const styles = StyleSheet.create({
container: {
paddingVertical: 8
paddingVertical: 16
}
});

Expand Down
2 changes: 1 addition & 1 deletion app/containers/List/ListInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import I18n from '../../i18n';

const styles = StyleSheet.create({
container: {
paddingVertical: 4,
paddingTop: 8,
paddingHorizontal: PADDING_HORIZONTAL
},
text: {
Expand Down
2 changes: 1 addition & 1 deletion app/containers/List/ListSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Header } from '.';

const styles = StyleSheet.create({
container: {
marginBottom: 8
marginBottom: 16
}
});

Expand Down
2 changes: 1 addition & 1 deletion app/containers/List/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { StyleSheet } from 'react-native';

export const styles = StyleSheet.create({
contentContainerStyleFlatList: {
paddingVertical: 32
paddingVertical: 16
}
});
5 changes: 2 additions & 3 deletions app/views/CreateChannelView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const styles = StyleSheet.create({
marginTop: 16
},
containerStyle: {
marginBottom: 28
marginBottom: 16
},
list: {
width: '100%'
Expand All @@ -53,8 +53,7 @@ const styles = StyleSheet.create({
paddingHorizontal: 16
},
buttonCreate: {
marginHorizontal: 16,
marginTop: 24
margin: 16
}
});

Expand Down
1 change: 1 addition & 0 deletions app/views/NotificationPreferencesView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ const NotificationPreferencesView = (): React.ReactElement => {
testID='notification-preference-view-alert'
onChangeValue={saveNotificationSettings}
/>
<List.Separator />
<RenderListPicker
preference='audioNotificationValue'
room={room}
Expand Down
2 changes: 1 addition & 1 deletion app/views/RoomMembersView/components/ActionsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function ActionsSection({ rid, t, joined }: IActionsSection): Rea
};

return (
<View style={{ paddingTop: canAddUser || canInviteUser ? 16 : 0, paddingBottom: canAddUser || canInviteUser ? 8 : 0 }}>
<View style={{ paddingTop: canAddUser || canInviteUser ? 16 : 0, paddingBottom: canAddUser || canInviteUser ? 16 : 0 }}>
{['c', 'p'].includes(t) && canAddUser ? (
<>
<List.Separator />
Expand Down
4 changes: 2 additions & 2 deletions app/views/StatusView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const STATUS: IStatus[] = [

const styles = StyleSheet.create({
inputContainer: {
marginTop: 32,
marginBottom: 32
marginTop: 16,
marginBottom: 16
},
inputLeft: {
position: 'absolute',
Expand Down