50 lines
745 B
Vue
50 lines
745 B
Vue
<script setup>
|
|
import 'bootstrap/js/dist/modal.js'
|
|
import HUD from './components/HUD.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<header>
|
|
<!--
|
|
<img alt="Raspberry Pi Minimalistic Icon" class="logo" src="./assets/icon_pi.png" width="128" height="128"/>
|
|
-->
|
|
<meta charset="utf-8">
|
|
</header>
|
|
|
|
<main>
|
|
<div>
|
|
<HUD></HUD>
|
|
|
|
</div>
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
header {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.logo {
|
|
display: block;
|
|
margin: 0 auto 2rem;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
header {
|
|
display: flex;
|
|
place-items: center;
|
|
padding-right: calc(var(--section-gap) / 2);
|
|
}
|
|
|
|
.logo {
|
|
margin: 0 2rem 0 0;
|
|
}
|
|
|
|
header .wrapper {
|
|
display: flex;
|
|
place-items: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
</style>
|