Files
dredgenews/resources/js/components/Masthead.vue
T
dredgy 439139a057
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Done
2026-07-04 23:09:00 +10:00

44 lines
829 B
Vue

<script setup lang="ts">
import { Link } from '@inertiajs/vue3';
defineProps<{
light?: boolean;
small?: boolean;
}>();
</script>
<template>
<Link style="text-decoration: none;" :href="route('home')">
<span
:class="[
'masthead',
small && 'masthead-sm',
light && 'masthead-light',
!light && 'masthead-dark',
]"
>
Dredge<span class="masthead-accent">News</span>
</span>
</Link>
</template>
<style scoped lang="sass">
.masthead
font-family: 'Playfair Display', serif
font-weight: 700
font-size: 22px
letter-spacing: -0.5px
.masthead-sm
font-size: 16px
.masthead-light
color: #FFFFFF
.masthead-dark
color: #111111
.masthead-accent
color: #C0392B
</style>