automatic url change in build / testing, added loader image

This commit is contained in:
2016-04-01 00:09:39 +02:00
parent 46d861e0dc
commit 2ffaf1a4af
17 changed files with 10338 additions and 124 deletions
+22 -1
View File
@@ -1,12 +1,14 @@
#content {
flex-grow: 1;
position: relative;
overflow-y: auto;
padding: dist(0);
@include media($phone) {
padding: dist(-1);
}
overflow-y: auto;
& > * {
margin-left: auto;
margin-right: auto;
@@ -34,3 +36,22 @@
color: $c-form-label-fg;
}
}
// Loader wheel in top right corner
#loader {
position: absolute;
right: dist(1);
top: dist(1);
transition: opacity .2s;
opacity: 0;
@include media($phone) {
top: dist(0);
right: dist(0);
}
&.show {
opacity:1;
}
}