traxxx/assets/components/header/header.vue

20 lines
271 B
Vue
Raw Normal View History

<template>
<header class="header">
<h1 class="logo">Porn Radar</h1>
</header>
</template>
<style lang="scss" scoped>
@import 'theme';
.header {
color: $text-contrast;
background: $primary;
padding: 1rem;
}
.logo {
margin: 0;
}
</style>