Replace solid white event cards with glass-effect cards featuring backdrop blur, semi-transparent gradient backgrounds, and light borders that blend with the Electric Dusk gradient background. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
468 B
Vue
28 lines
468 B
Vue
<template>
|
|
<h2 class="section-header" :class="{ 'section-header--emphasized': emphasized }">
|
|
{{ label }}
|
|
</h2>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string
|
|
emphasized?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<style scoped>
|
|
.section-header {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: var(--color-text-on-gradient);
|
|
margin: 0;
|
|
padding: var(--spacing-sm) 0;
|
|
}
|
|
|
|
.section-header--emphasized {
|
|
font-size: 1.1rem;
|
|
font-weight: 800;
|
|
}
|
|
</style>
|