Initial commit

This commit is contained in:
Torsten Schulz
2024-07-17 22:24:56 +02:00
commit 3880a265eb
126 changed files with 10959 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<header>
<div class="logo"><img src="/images/logos/logo.png" /></div>
<div class="advertisement">Advertisement</div>
</header>
</template>
<script>
export default {
name: 'AppHeader'
};
</script>
<style scoped>
header {
display: flex;
justify-content: space-between;
padding: 10px;
background-color: #f8f9fa;
}
.logo, .title, .advertisement {
text-align: center;
}
.advertisement {
flex: 1;
}
.logo > img {
max-height: 50px;
}
</style>