usability fixes for small screens
This commit is contained in:
parent
b2ea62bce9
commit
f11f5dde0a
@ -149,6 +149,11 @@ export default {
|
|||||||
this.goldRushDesc = this.$t(`cards.${card.name}.desc`)
|
this.goldRushDesc = this.$t(`cards.${card.name}.desc`)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
if (window.innerWidth < 1000) {
|
||||||
|
this.goldRushShopOpen = false;
|
||||||
|
}
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
lastScrap(newVal, old) {
|
lastScrap(newVal, old) {
|
||||||
this.previousScrap = old
|
this.previousScrap = old
|
||||||
@ -164,6 +169,7 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
|
flex-wrap: wrap-reverse;
|
||||||
}
|
}
|
||||||
.last-scrap {
|
.last-scrap {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
Loading…
Reference in New Issue
Block a user