Fix mod ballots on mobile

This commit is contained in:
Andrew Miner
2016-06-01 18:40:45 -06:00
parent 00ca88500e
commit d102834408
2 changed files with 32 additions and 1 deletions
@@ -88,3 +88,13 @@ $ballot-move-duration: 0.2s;
} }
} }
} }
@include screen-size(mobile) {
.view__mod_ballot {
.status {
&.loaded {
padding: 0;
}
}
}
}
@@ -31,7 +31,7 @@
.name { .name {
margin-right : $size-margin-medium; margin-right : $size-margin-medium;
flex : 1 1 auto; flex : 1 1 100%;
font-family : $font-family-text; font-family : $font-family-text;
font-size : $font-size-large; font-size : $font-size-large;
} }
@@ -51,3 +51,24 @@
justify-content : center; justify-content : center;
} }
} }
@include screen-size(mobile) {
.view__mod_ballot_line {
.vote-count {
}
& > img {
}
.name {
overflow: hidden;
font-size: $font-size-medium;
}
.button {
}
.wait {
}
}
}