Skip to content

Commit

Permalink
fix: margin-bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
sekiju committed Jan 15, 2025
1 parent 0679b7f commit 33b37ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ const StatusbarView = inject('storeAppOptions', 'storeWorksheets', 'users')(obse

return (
<Fragment>
<View id="idx-statusbar" className="statusbar" style={{ 'margin-bottom': storeAppOptions.isDrawMode ? 'calc(44px + env(safe-area-inset-bottom) + env(keyboard-inset-top))' : undefined, ...viewStyle }}>
<View id="idx-statusbar" className="statusbar" style={{ marginBottom: storeAppOptions.isDrawMode ? 'calc(44px + env(safe-area-inset-bottom) + env(keyboard-inset-top))' : undefined, ...viewStyle }}>
{isEdit &&
<div id="idx-box-add-tab" className={`${isDisconnected || isWorkbookLocked ? 'disabled box-tab' : 'box-tab'}`}>
<Link href={false} id="idx-btn-addtab" className={`tab${isDisabledEditSheet || isDisconnected || isWorkbookLocked || isProtectedWorkbook ? ' disabled' : ''}`} onClick={props.onAddTabClicked}>
Expand Down

0 comments on commit 33b37ec

Please sign in to comment.