ghostguild-org/app/components/ParchmentInset.vue
Jennie Robinson Faber c6b970a621
Some checks failed
Test / vitest (push) Successful in 10m47s
Test / playwright (push) Failing after 9m11s
Test / visual (push) Failing after 9m11s
Test / Notify on failure (push) Successful in 2s
Design token updates.
2026-04-11 23:24:38 +01:00

35 lines
625 B
Vue

<template>
<div class="parchment-inset">
<slot />
</div>
</template>
<style scoped>
.parchment-inset {
background: var(--parch);
color: var(--parch-text);
padding: 32px;
margin: 0;
border-bottom: 1px dashed var(--parch-border);
}
.parchment-inset :deep(h2) {
font-family: 'Brygada 1918', serif;
font-size: 22px;
font-weight: 500;
color: var(--parch-text);
margin-bottom: 12px;
}
.parchment-inset :deep(p) {
font-size: 13px;
color: var(--parch-text-dim);
line-height: 1.75;
max-width: 560px;
margin-bottom: 12px;
}
.parchment-inset :deep(a) {
color: var(--parch-accent);
}
</style>