mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-28 20:15:20 +03:00
Fix generate message button
- regressed when removing square/svelte-store
This commit is contained in:
parent
cede6734b0
commit
eb6f224949
@ -47,18 +47,19 @@
|
||||
<style lang="postcss">
|
||||
.menu-item {
|
||||
display: flex;
|
||||
text-align: left;
|
||||
align-items: center;
|
||||
color: var(--clr-theme-scale-ntrl-0);
|
||||
height: var(--space-24);
|
||||
padding: var(--space-4) var(--space-6);
|
||||
border-radius: var(--radius-s);
|
||||
justify-content: space-between;
|
||||
gap: var(--space-8);
|
||||
&:not(.disabled):hover {
|
||||
background: var(--clr-theme-container-sub);
|
||||
}
|
||||
}
|
||||
.label {
|
||||
flex-grow: 1;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.disabled {
|
||||
|
@ -133,12 +133,12 @@
|
||||
<ContextMenuItem
|
||||
checked={$commitGenerationExtraConcise}
|
||||
label="Extra concise"
|
||||
on:click={() => commitGenerationExtraConcise.update((value) => !value)}
|
||||
on:click={() => ($commitGenerationExtraConcise = !$commitGenerationExtraConcise)}
|
||||
/>
|
||||
<ContextMenuItem
|
||||
checked={$commitGenerationUseEmojis}
|
||||
label="Use emojis 😎"
|
||||
on:click={() => commitGenerationUseEmojis.update((value) => !value)}
|
||||
on:click={() => ($commitGenerationUseEmojis = !$commitGenerationUseEmojis)}
|
||||
/>
|
||||
</ContextMenuSection>
|
||||
</ContextMenu>
|
||||
|
Loading…
Reference in New Issue
Block a user