Skip to content

Commit

Permalink
update further icons
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Jan 5, 2025
1 parent 095a663 commit 50ea90a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
Binary file modified src/assets/icons/architect-token.webp
Binary file not shown.
Binary file modified src/assets/icons/first-player-token.webp
Binary file not shown.
Binary file modified src/assets/icons/prosperity-card.webp
Binary file not shown.
Binary file modified src/assets/icons/prosperity-money.webp
Binary file not shown.
Binary file modified src/assets/icons/unlock-income.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/round/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default defineComponent({
width: 100%;
padding: 1px;
justify-content: center;
background-color: #ee994a;
background-color: #f39c40;
.icon {
width: 50px;
}
Expand Down
8 changes: 7 additions & 1 deletion src/components/round/TechCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<AppIcon name="unlock-income" class="icon"/>
</div>
<div class="marker" v-if="isCommunication(tech)">
<AppIcon name="prosperity-money" class="icon"/>
<AppIcon name="prosperity-money" class="icon communication"/>
</div>
<div class="durations">
<div class="duration" v-for="duration of getDuration(tech)" :key="duration" :style="{'z-index':100-duration}"><div>{{duration + round - 1}}</div></div>
Expand Down Expand Up @@ -118,6 +118,12 @@ export default defineComponent({
max-width: 35px;
max-height: 30px;
filter: drop-shadow(1px 1px 1px #444);
&.communication {
max-width: 42px;
@media (max-width: 600px) {
max-width: 34px;
}
}
}
}
.durations {
Expand Down

0 comments on commit 50ea90a

Please sign in to comment.