|
|
|
@ -4,11 +4,11 @@ footer.footer
@@ -4,11 +4,11 @@ footer.footer
|
|
|
|
|
.footer__copyright Tesla © {{ year }} |
|
|
|
|
|
|
|
|
|
nav.footer-nav |
|
|
|
|
a(href="#") Privacy & Legal |
|
|
|
|
a(href="#") Contact |
|
|
|
|
a(href="#") Careers |
|
|
|
|
a(href="#") Get Newsletter |
|
|
|
|
a(href="#") Locations |
|
|
|
|
a.footer-nav__el(href="#") Privacy & Legal |
|
|
|
|
a.footer-nav__el(href="#") Contact |
|
|
|
|
a.footer-nav__el(href="#") Careers |
|
|
|
|
a.footer-nav__el(href="#") Get Newsletter |
|
|
|
|
a.footer-nav__el(href="#") Locations |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
@ -28,15 +28,28 @@ footer.footer
@@ -28,15 +28,28 @@ footer.footer
|
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
font-weight: 500; |
|
|
|
|
font-size: 20px; |
|
|
|
|
line-height: 24px; |
|
|
|
|
text-align: right; |
|
|
|
|
letter-spacing: 0.05em; |
|
|
|
|
|
|
|
|
|
&__el{ |
|
|
|
|
color: #000000; |
|
|
|
|
text-decoration: none; |
|
|
|
|
&:not(first-child){ |
|
|
|
|
margin-left: 50px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
export default { |
|
|
|
|
export default { |
|
|
|
|
name: 'Footer', |
|
|
|
|
setup() { |
|
|
|
|
return { year: new Date().getFullYear() }; |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|