1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-23 02:42:37 +01:00

enlarge export button

This commit is contained in:
Mikael Finstad 2022-02-13 17:25:06 +08:00
parent 7f5351a300
commit badac2dcba
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26
2 changed files with 3 additions and 3 deletions

View File

@ -345,7 +345,7 @@ const BottomBar = memo(({
{!simpleMode && <ToggleExportConfirm style={{ marginRight: 5 }} exportConfirmEnabled={exportConfirmEnabled} toggleExportConfirmEnabled={toggleExportConfirmEnabled} />}
<ExportButton enabledOutSegments={enabledOutSegments} areWeCutting={areWeCutting} autoMerge={autoMerge} onClick={onExportPress} />
<ExportButton size={1.3} enabledOutSegments={enabledOutSegments} areWeCutting={areWeCutting} autoMerge={autoMerge} onClick={onExportPress} />
</div>
</>
);

View File

@ -198,9 +198,9 @@ const ExportConfirm = memo(({
<motion.div
style={{ transformOrigin: 'bottom right' }}
initial={{ scale: 0.5, opacity: 1 }}
initial={{ scale: 0.7, opacity: 1 }}
animate={{ scale: 1, opacity: 1 }}
exit={{ scale: 0.5, opacity: 0 }}
exit={{ scale: 0.7, opacity: 0 }}
transition={{ duration: 0.4, easings: ['easeOut'] }}
>
<ExportButton enabledOutSegments={enabledOutSegments} areWeCutting={areWeCutting} autoMerge={autoMerge} onClick={() => onExportConfirm()} size={1.7} />