mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
fix(web): constrain staged attachment tray height (#3168)
* fix(docker): fix container startup crash due to missing OD_API_TOKEN * fix(docker): forward OD_API_TOKEN to fix docker container boot loop * fix(docker): enforce non-empty OD_API_TOKEN for docker-compose * fix(deploy): automate OD_API_TOKEN generation in installer and close compose loop * docs(readme): guide manual deployment users to configure OD_API_TOKEN * docs(readme): align working directory paths for manual deployment instructions * docs(readme): align working directory paths for manual deployment instructions * docs(readme): restore git clone context for first-time users * fix(web): Limit the maximum height of the StagedAttachments component. related issue 3155 * fix(web): limit attachment area overflow to vertical only
This commit is contained in:
parent
381e9a96e2
commit
92f7ff86b5
1 changed files with 3 additions and 0 deletions
|
|
@ -759,6 +759,9 @@
|
|||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
padding: 4px 4px 0;
|
||||
max-height: min(148px, 22vh);
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.staged-chip {
|
||||
display: inline-flex;
|
||||
|
|
|
|||
Loading…
Reference in a new issue