spacing fix

- spacing (between delete and chevron icons) was different between looping and actions
This commit is contained in:
Joe 2024-10-29 15:30:51 +00:00
parent f4a40b8a2b
commit 4159a0dc4e
1 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@
<Icon on:click={removeLooping} hoverable name="DeleteOutline" /> <Icon on:click={removeLooping} hoverable name="DeleteOutline" />
</AbsTooltip> </AbsTooltip>
<div style="margin-left: 10px;" on:click={() => {}}> <div on:click={() => {}}>
<Icon <Icon
hoverable hoverable
name={showLooping ? "ChevronRight" : "ChevronDown"} name={showLooping ? "ChevronRight" : "ChevronDown"}
@ -301,6 +301,6 @@
.blockTitle { .blockTitle {
display: flex; display: flex;
align-items: center; align-items: center;
gap: var(--spacing-s); gap: var(--spacing-l);
} }
</style> </style>