various changes to reserved card handling in player ui

This commit is contained in:
2022-08-27 14:53:02 -05:00
parent a9a6b83500
commit 8be8933446
6 changed files with 80 additions and 52 deletions

View File

@@ -1,4 +1,5 @@
@import '../../sass/helper/mixins';
@import '../../sass/helper/variables';
@import '../../sass/helper/placeholders';
.all-players {
@@ -33,5 +34,35 @@
@include map-gem-values(".reserve-cost");
}
}
.card {
width: 100%;
img {
display: none;
}
@each $gem in $gemlist {
@include map-gem-values('.foreground');
.foreground-#{$gem} {
display: flex;
flex-direction: column;
align-items: center;
padding: 8px;
p {
display: inline;
padding: 8px;
}
.total-card-cost {
display: flex;
flex-flow: row wrap;
justify-content: center;
@include map-gem-values(".card-cost");
}
}
}
}
}
}