Merge pull request #3299 from johnfrian/alternate-greeting-scroll

Constrict scrolling to lower dynamic formarea in alternate greetings popup
This commit is contained in:
Cohee
2025-01-13 18:49:08 +02:00
committed by GitHub

View File

@@ -5735,3 +5735,15 @@ body:not(.movingUI) .drawer-content.maximized {
}
}
/* Constrict the scroll of alternate greetings to only the dynamic form section */
.alternate_grettings {
display: grid;
grid-template-rows: auto auto auto 1fr;
max-height: 100%;
overflow: hidden;
}
.alternate_greetings_list {
overflow-y: scroll;
}