fix(mobile): ensure minimum padding at the bottom of the tab bar (#3198)
This commit is contained in:
parent
f9f7425468
commit
f54d05f950
|
|
@ -57,7 +57,7 @@ export const Tabbar: FC<{
|
|||
accessibilityRole="tablist"
|
||||
className="absolute inset-x-0 bottom-0 z-10"
|
||||
style={{
|
||||
paddingBottom: insets.bottom,
|
||||
paddingBottom: Math.max(insets.bottom, 8),
|
||||
transform: [{ translateY }],
|
||||
}}
|
||||
onLayout={(e) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue