OpenVisor-Website/src/components/footer.vue

80 lines
1.5 KiB
Vue
Raw Normal View History

2024-04-26 21:56:56 +02:00
<template>
<footer class="footer-footer" v-bind:class="rootClassName">
<div class="footer-kontakt">
<span class="footer-kontakt1">{{ Text }}</span>
<a href="mailto:info@openvisor.ch?subject=" class="footer-email">
{{ Text1 }}
</a>
</div>
<iframe
src="https://dashboard.mailerlite.com/forms/582593/98301649820321679/share"
class="footer-newsletter-form"
></iframe>
2024-04-26 21:56:56 +02:00
</footer>
</template>
<script>
export default {
name: 'Footer',
2024-04-26 21:56:56 +02:00
props: {
Text: {
type: String,
default: 'Kontakt',
},
rootClassName: String,
Text1: {
type: String,
2024-04-26 21:56:56 +02:00
default: 'info@openvisor.ch',
2024-04-26 21:56:56 +02:00
},
},
}
</script>
<style scoped>
.footer-footer {
gap: 20%;
2024-04-26 21:56:56 +02:00
width: 100%;
display: flex;
position: relative;
2024-04-26 21:56:57 +02:00
margin-top: 10%;
2024-04-26 21:56:56 +02:00
align-items: center;
padding-left: var(--dl-space-space-oneandhalfunits);
2024-04-26 21:56:57 +02:00
margin-bottom: 10%;
2024-04-26 21:56:56 +02:00
padding-right: var(--dl-space-space-oneandhalfunits);
flex-direction: row;
justify-content: center;
2024-04-26 21:57:07 +02:00
}
.footer-kontakt {
flex: 0 0 auto;
width: 200px;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.footer-kontakt1 {
2024-04-26 21:56:57 +02:00
color: #ffffff;
2024-04-26 21:56:56 +02:00
font-size: 36px;
align-self: center;
2024-04-26 21:56:57 +02:00
text-align: center;
2024-04-26 21:56:56 +02:00
text-transform: uppercase;
}
.footer-email {
2024-04-26 21:56:56 +02:00
color: #ffff00;
2024-04-26 21:56:56 +02:00
font-size: 18px;
2024-04-26 21:56:56 +02:00
align-self: center;
2024-04-26 21:56:56 +02:00
font-style: normal;
font-weight: 300;
text-decoration: underline;
}
.footer-newsletter-form {
width: 320px;
height: 360px;
margin-bottom: var(--dl-space-space-twounits);
}
2024-04-26 21:56:56 +02:00
2024-04-26 21:56:56 +02:00
2024-04-26 21:56:56 +02:00
</style>