Raised in https://github.com/Automattic/wp-calypso/pull/5693#issuecomment-222746055
The spinner inside the preview at mobile sizes is a bit too high, and in the tour gets hidden behind the dialog (screenshot without dialog).
Unclear whether moving the spinner for this one case makes sense. The CSS has a special case for the vertical positioning of the spinner on mobile, which moves it further up:
.web-preview .spinner {
margin-left: -10px;
position: absolute;
top: 45%;
left: 50%;
@include breakpoint( "<660px" ) {
top: 20%;
}
}
The step doesn't obscure the spinner at 50%:
@shaunandrews @folletto any opinions on whether we should move the spinner down? We don't want to have a special case in which we move the spinner down only if a tour is running. That would be sad.
@folletto thanks, PR is #5784.