Add some padding around the name of Salmon Run gear

This commit is contained in:
Matt Isenhower
2018-02-01 08:49:29 -08:00
parent c502fb95c3
commit 4fe925752f
3 changed files with 6 additions and 2 deletions

View File

@@ -536,6 +536,10 @@ body.has-modal #main {
position: relative;
}
&.salmon-run-gear .gear-name {
padding: 10px 0;
}
.info-overlay {
position: absolute;
bottom: 0;

View File

@@ -1,7 +1,7 @@
<template>
<Wrapper title="Salmon Run Gear" :time="now">
<div class="tilt-left salmon-run-gear" style="display: flex; align-items: center; justify-content: center;" v-if="merchandise">
<MerchandiseBox :merchandise="merchandise" />
<MerchandiseBox :merchandise="merchandise" class="salmon-run-gear" />
</div>
</Wrapper>
</template>

View File

@@ -2,7 +2,7 @@
<Modal @close="$emit('close')">
<div class="modal-content" style="max-width: 300px; overflow: visible">
<div class="tilt-right" style="overflow: hidden">
<MerchandiseBox :merchandise="merchandise" />
<MerchandiseBox :merchandise="merchandise" class="salmon-run-gear" />
</div>
</div>
</Modal>