Skip to content
Open
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
19 changes: 19 additions & 0 deletions web/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3747,6 +3747,25 @@ pre.extra-field-value {

/* Responsive: narrow screens */
@media (max-width: 768px) {
/* the composer eats a lot of a phone screen, so halve its spacing and give
the buttons equal padding on all four sides */
.input-box {
gap: 4px;
padding: 6px 8px;
}

.input-textarea {
padding: 5px 7px;
/* the 40px floor is one line's worth at the full padding; at half the
padding it would leave dead space under a single line until wrapping
outgrew it */
min-height: 30px;
}

.input-box .btn {
padding: 5px;
}

.banner-usage {
width: 132px;
flex-basis: 132px;
Expand Down