This was caused by the negative margin introduced in
1d224f10cdd05e7f5d09f869ee1fbbbdff025749 which caused the calculation to be off by 10px, causing a visible gap.
See https://www.woltlab.com/community/thread/295497-fehlerhafte-mobile-darstellung-von-dialogen/
border-top: 1px solid $wcfContentBorderInner;
bottom: 0;
left: 0;
- padding: 10px;
+ margin-bottom: 0;
+ padding: 10px 10px 0 10px;
position: absolute;
right: 0;
-
- @include screen-sm-up {
- /* this reverts the negative margin introduced by `.formSubmit` */
- margin-bottom: 0;
- padding-bottom: 0;
- }
}
.section {