31 lines
614 B
Vue
31 lines
614 B
Vue
<template>
|
|
<header class="">
|
|
<div class="container">
|
|
<div class="columns is-vcentered is-gapless is-justify-content-space-around">
|
|
<div class="column is-narrow">
|
|
<img src="../../assets/logo_unam.png" alt="logo_unam" />
|
|
</div>
|
|
<div class="column is-narrow">
|
|
<img src="../../assets/logo_acatlan.png" alt="logo_acatlan" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style scoped>
|
|
header {
|
|
background-color: #1b3d70;
|
|
/* height:12.5vh; */
|
|
height: 20vh;
|
|
}
|
|
|
|
.height-100 {
|
|
height: 100%;
|
|
}
|
|
</style>
|