Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ body {
animation: add-sheet-in 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tag-picker mode: pin the sheet at full available height so the tag
list fills the space between the search field and the keyboard,
instead of the sheet collapsing to fit its content. */
.add-dialog-content--full {
height: min(85dvh, calc(var(--visual-viewport-height, 100dvh) - 12px));
}

@keyframes add-sheet-in {
from {
transform: translateY(100%);
Expand Down
Loading
Loading