2022-05-25 03:38:17 +00:00
|
|
|
<template>
|
|
|
|
<header>
|
|
|
|
<div class="container py-3">
|
|
|
|
<div
|
|
|
|
class="
|
|
|
|
columns
|
|
|
|
is-mobile is-gapless is-vcentered is-justify-content-space-between
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
href="https://www.unam.mx/"
|
|
|
|
class="column is-5-mobile is-3-tablet is-one-fifth-widescreen ml-3"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<b-image :src="require('@/assets/logo_unam.png')" alt="logo_unam" />
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a
|
2022-07-20 05:01:20 +00:00
|
|
|
href="https://pcpuma.unam.mx/"
|
2022-05-25 03:38:17 +00:00
|
|
|
class="column is-5-mobile is-3-tablet is-one-fifth-widescreen mr-3"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<b-image
|
2022-07-20 05:01:20 +00:00
|
|
|
:src="require('@/assets/icon.png')"
|
|
|
|
alt="logo_pcpuma"
|
2022-05-25 03:38:17 +00:00
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
header {
|
|
|
|
background-color: #1d3d6f;
|
|
|
|
}
|
|
|
|
</style>
|