Files
servicio_social_front/components/layouts/Header.vue
T

31 lines
614 B
Vue
Raw Normal View History

2020-11-10 23:25:34 -06:00
<template>
<header class="">
<div class="container">
2020-11-11 18:13:26 -06:00
<div class="columns is-vcentered is-gapless is-justify-content-space-around">
2020-11-10 23:25:34 -06:00
<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>
2020-11-11 18:13:26 -06:00
export default {}
2020-11-10 23:25:34 -06:00
</script>
<style scoped>
header {
background-color: #1b3d70;
2020-11-11 18:13:26 -06:00
/* height:12.5vh; */
height: 20vh;
}
.height-100 {
height: 100%;
2020-11-10 23:25:34 -06:00
}
</style>