Files
dredgenews/resources/js/components/Masthead.vue
T
dredgy 0485b85a59
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
Initial
2026-07-04 18:24:44 +10:00

35 lines
696 B
Vue

<script setup lang="ts">
defineProps<{
light?: boolean;
small?: boolean;
}>();
</script>
<template>
<span :class="['masthead', small && 'masthead-sm', light && 'masthead-light', !light && 'masthead-dark']">
Dredge<span class="masthead-accent">News</span>
</span>
</template>
<style scoped lang="sass">
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap')
.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>