Merge pull request #3299 from johnfrian/alternate-greeting-scroll Constrict scrolling to lower dynamic formarea in alternate greetings popup

7e691143d04bfe8b0d06c67154aa96a760f685e0

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
1 files changed, +12 -0Showing whitespace changes
public/style.css+12 -0
@@ -5735,3 +5735,15 @@ body:not(.movingUI) .drawer-content.maximized {
57355735 }
57365736
57375737}
5738+
5739+/* Constrict the scroll of alternate greetings to only the dynamic form section */
5740+.alternate_grettings {
5741+ display: grid;
5742+ grid-template-rows: auto auto auto 1fr;
5743+ max-height: 100%;
5744+ overflow: hidden;
5745+}
5746+
5747+.alternate_greetings_list {
5748+ overflow-y: scroll;
5749+}