diff --git a/src/static_src/scss/_sky.scss b/src/static_src/scss/_sky.scss index 6266e20..5d9df0b 100644 --- a/src/static_src/scss/_sky.scss +++ b/src/static_src/scss/_sky.scss @@ -1019,6 +1019,15 @@ body.sky-saved { flex: 0 0 auto; width: 100%; max-width: 22rem; + max-height: none; // reset the (max-width:600px) cap + overflow-y: visible; // no inner scroll — aperture handles it + } + + // The (max-width:600px) block sets align-self:flex-end on the btn — that's + // "bottom" under the default flex-row form-col, but becomes "right" once we + // flip the col to flex-direction:column. Reset to inherit align-items:center. + .sky-page .sky-form-col > #id_sky_confirm { + align-self: auto; } }