moved footer styles into footer component and added shadow

This commit is contained in:
Vasily Belolapotkov 2019-09-06 09:29:06 +03:00 committed by mattwr18
parent 5d73cad168
commit f4b3c84815
2 changed files with 13 additions and 9 deletions

View File

@ -13,3 +13,16 @@
<nuxt-link to="/changelog">{{ $t('site.changelog') }}</nuxt-link>
</div>
</template>
<style lang="scss">
.ds-footer {
text-align: center;
position: fixed;
bottom: 0px;
z-index: 10;
background-color: white;
width: 100%;
padding: 10px 10px;
box-shadow: 0px -6px 12px -4px rgba(0, 0, 0, 0.1);
}
</style>

View File

@ -339,13 +339,4 @@ export default {
display: none;
}
}
.ds-footer {
text-align: center;
position: fixed;
bottom: 0px;
z-index: 10;
background-color: white;
width: 100%;
padding: 10px 10px;
}
</style>