Skip to content

Commit 4c33a72

Browse files
committed
fix: git flow action pannel branch tag style error
1 parent d5e5a23 commit 4c33a72

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

‎webview-ui/src/components/modals/FlowFinishModal.svelte‎

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<div class="flow-step">
6969
<span class="flow-step-num">{i + 1}</span>
7070
<i class="codicon {step.icon}"></i>
71-
<span>{@html step.text}</span>
71+
<span class="flow-step-content">{@html step.text}</span>
7272
</div>
7373
{/each}
7474
</div>
@@ -90,6 +90,10 @@
9090
margin: 12px 0;
9191
}
9292
93+
.modal-context-card {
94+
flex-wrap: wrap;
95+
}
96+
9397
.flow-step {
9498
display: flex;
9599
align-items: center;
@@ -119,6 +123,21 @@
119123
flex-shrink: 0;
120124
}
121125
126+
.flow-step-content {
127+
display: flex;
128+
align-items: center;
129+
gap: 6px;
130+
flex: 1;
131+
flex-wrap: wrap;
132+
min-width: 0;
133+
}
134+
135+
.modal-context-card :global(.modal-pill),
136+
.flow-step :global(.modal-pill) {
137+
max-width: 100%;
138+
flex-shrink: 0;
139+
}
140+
122141
.danger {
123142
background: var(--vscode-errorForeground, #f44336) !important;
124143
}

0 commit comments

Comments
 (0)