1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Additions

This commit is contained in:
2020-05-08 18:02:18 +02:00
parent 7b4c55dd62
commit 8ded79017b
27 changed files with 353 additions and 200 deletions

View File

@ -0,0 +1,55 @@
<template>
<div id="footer" class="text-light">
<div class="footer-left-elements">
<ul class="footer-elements">
<li class="footer-element">
<i class="material-icons md-18">memory</i>
</li>
</ul>
</div>
<div class="footer-right-elements">
<ul class="footer-elements">
<li class="footer-element">
<i class="material-icons md-18">favorite</i>
</li>
<li class="footer-element">
<i class="material-icons md-18">info_outline</i>
</li>
</ul>
</div>
</div>
</template>
<script>
export default {
};
</script>
<style lang="scss">
#footer{
height: $footer-height;
display: flex;
justify-content: space-between;
align-items: center;
background: $primary-color;
padding: 0 .2rem;
position: fixed;
bottom: 0;
left: 0;
right: 0;
box-shadow: 0 0 1px 0px #000;
.footer-elements{
list-style: none;
margin: 0;
display: flex;
.footer-element{
padding: 0 .4rem;
}
}
}
</style>