fix: tune sidebar and context panel sizing

Keep the left sidebar open when the context panel opens
Reduce right sidebar and context panel default widths
Collapse only the sync button label at medium widths
This commit is contained in:
Bohdan Triapitsyn
2026-05-22 01:33:11 +03:00
parent 6fd3afd25a
commit 2d85cc86be
5 changed files with 16 additions and 59 deletions
@@ -165,12 +165,12 @@ export const CommitSection: React.FC<CommitSectionProps> = ({
{commitAction === 'commitAndPush' ? (
<>
<Icon name="loader-4" className="size-4 animate-spin" />
<span className="commit-actions__label">{t('gitView.commit.pushing')}</span>
<span className="commit-actions__label commit-actions__label--push">{t('gitView.commit.pushing')}</span>
</>
) : (
<>
<Icon name="arrow-up" className="size-3.5" />
<span className="commit-actions__label">{t('gitView.commit.push')}</span>
<span className="commit-actions__label commit-actions__label--push">{t('gitView.commit.push')}</span>
</>
)}
</Button>