35 lines
508 B
Vue
35 lines
508 B
Vue
<template>
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-10">
|
|
<h1 class="title">Términos y condiciones</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
setup() {
|
|
definePageMeta({
|
|
layout: 'main',
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
margin-top: 5rem;
|
|
margin-bottom: 5rem;
|
|
|
|
@include mobile {
|
|
margin-top: 7rem;
|
|
}
|
|
}
|
|
.title {
|
|
color: $color-navy;
|
|
font-size: $xxl;
|
|
}
|
|
</style>
|