Make padding equal in the bottom bar (#10265)

This commit is contained in:
Samuel Newman
2026-04-16 08:31:38 -07:00
committed by GitHub
parent 8c5899fc93
commit cc861093c2
@@ -1,6 +1,6 @@
import {StyleSheet} from 'react-native' import {StyleSheet} from 'react-native'
import {atoms as a} from '#/alf' import {atoms as a, tokens} from '#/alf'
export const styles = StyleSheet.create({ export const styles = StyleSheet.create({
bottomBar: { bottomBar: {
@@ -10,8 +10,8 @@ export const styles = StyleSheet.create({
right: 0, right: 0,
flexDirection: 'row', flexDirection: 'row',
borderTopWidth: StyleSheet.hairlineWidth, borderTopWidth: StyleSheet.hairlineWidth,
paddingLeft: 5, paddingLeft: tokens.space.sm,
paddingRight: 10, paddingRight: tokens.space.sm,
}, },
bottomBarWeb: a.fixed, bottomBarWeb: a.fixed,
ctrl: { ctrl: {