Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions apps/staged/src/lib/features/sessions/NewSessionModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@
: isCommit
? 'Describe the change…'
: notePlaceholder}
rows={isReview ? 4 : 12}
rows={12}
disabled={starting}
items={hashtagItems}
/>
Expand Down Expand Up @@ -450,6 +450,7 @@
flex-direction: column;
width: 580px;
max-width: 90vw;
max-height: calc(100vh - 12vh - 4vh);
background: var(--bg-chrome);
border: 2px solid transparent;
border-radius: 12px;
Expand Down Expand Up @@ -597,6 +598,8 @@
display: flex;
flex-direction: column;
gap: 14px;
flex: 1;
min-height: 0;
}

.repo-info {
Expand All @@ -613,6 +616,23 @@
display: flex;
flex-direction: column;
gap: 4px;
flex: 1;
min-height: 0;
}

/* Propagate flex constraint through HashtagInput wrapper divs */
.form-group :global(.hashtag-input-wrapper) {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}

.form-group :global(.hashtag-input-container) {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}

.form-group :global(.hashtag-editor) {
Expand All @@ -624,8 +644,8 @@
font-size: var(--size-sm);
font-family: inherit;
line-height: 1.5;
resize: vertical;
min-height: 240px;
flex: 1;
overflow-y: auto;
transition: border-color 0.15s;
}

Expand Down