Skip to content

Commit 439d74e

Browse files
fix(codecatalyst): very long branch messes up layout #3280
Problem: When there was an existing branch with a very long name, the width of the input box would mess up the UI. Solution: Fix how the widths work for the branch selectiong/naming input boxes. Fixes IDE-10388 Signed-off-by: Nikolas Komonen <[email protected]>
1 parent c52e88b commit 439d74e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/codecatalyst/vue/create/source.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ export default defineComponent({
265265
<style scope>
266266
.picker {
267267
min-width: 300px;
268+
width: 100%;
269+
box-sizing: border-box;
268270
}
269271
270272
.source-pickers {
@@ -315,6 +317,8 @@ body.vscode-light .mode-container[data-disabled='true'] .config-item {
315317
316318
#branch-input {
317319
min-width: 300px;
320+
width: 100%;
321+
box-sizing: border-box;
318322
}
319323
320324
.project-button {

0 commit comments

Comments
 (0)