move loading spinner to bottom right on mobile

main
psychobunny 10 years ago
parent 80949b63a9
commit 0e3970d8a9

@ -1,4 +1,3 @@
/* Make clicks pass-through */
#nprogress { #nprogress {
pointer-events: none; pointer-events: none;
} }
@ -15,7 +14,6 @@
height: 2px; height: 2px;
} }
/* Fancy blur effect */
#nprogress .peg { #nprogress .peg {
display: block; display: block;
position: absolute; position: absolute;
@ -30,7 +28,6 @@
transform: rotate(3deg) translate(0px, -4px); transform: rotate(3deg) translate(0px, -4px);
} }
/* Remove these to get rid of the spinner */
#nprogress .spinner { #nprogress .spinner {
display: block; display: block;
position: fixed; position: fixed;
@ -39,6 +36,15 @@
right: 15px; right: 15px;
} }
@media (max-width: @screen-xs-max) {
#nprogress .spinner {
bottom: 15px;
right: 15px;
top: initial;
}
}
#nprogress .spinner-icon { #nprogress .spinner-icon {
width: 18px; width: 18px;
height: 18px; height: 18px;

Loading…
Cancel
Save