style(coming-soon): align with design system tokens
Some checks failed
Test / vitest (push) Successful in 11m46s
Test / playwright (push) Failing after 9m34s
Test / visual (push) Failing after 9m19s
Test / Notify on failure (push) Successful in 2s

Replace Tailwind utility color classes with CSS custom properties,
remove rounded corners, use dashed borders and parch button style.
This commit is contained in:
Jennie Robinson Faber 2026-04-12 11:16:53 +01:00
parent c6b970a621
commit 7b9448ffd5
2 changed files with 166 additions and 42 deletions

View file

@ -1,5 +1,12 @@
<template>
<div class="min-h-screen bg-guild-900">
<div class="coming-soon-layout">
<slot />
</div>
</template>
<style scoped>
.coming-soon-layout {
min-height: 100vh;
background: var(--bg);
}
</style>