Skip to content

Commit

Permalink
decrease step header size in InvocationGraph to "sm"
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Jul 31, 2024
1 parent c892ef9 commit b4cdf6b
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function scrollStepToView() {
<BCardHeader
class="d-flex justify-content-between align-items-center"
:class="activeNodeId ? steps[activeNodeId]?.headerClass : ''">
<Heading inline size="md" class="w-100 mr-2">
<Heading inline size="sm" class="w-100 mr-2">
<WorkflowInvocationStepHeader
v-if="activeNodeId !== null"
class="w-100"
Expand All @@ -221,10 +221,14 @@ function scrollStepToView() {
<span v-else>No Step Selected</span>
</Heading>
<div class="d-flex">
<BButton v-if="activeNodeId !== null" title="Scroll to Step" @click="scrollStepToView()">
<BButton
v-if="activeNodeId !== null"
title="Scroll to Step"
size="sm"
@click="scrollStepToView()">
<FontAwesomeIcon :icon="faArrowDown" />
</BButton>
<BButton v-if="activeNodeId !== null" title="Hide Step" @click="activeNodeId = null">
<BButton v-if="activeNodeId !== null" title="Hide Step" size="sm" @click="activeNodeId = null">
<FontAwesomeIcon :icon="faTimes" />
</BButton>
</div>
Expand Down

0 comments on commit b4cdf6b

Please sign in to comment.