ghostguild-org/app/layouts/coming-soon.vue
Jennie Robinson Faber 7b9448ffd5
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
style(coming-soon): align with design system tokens
Replace Tailwind utility color classes with CSS custom properties,
remove rounded corners, use dashed borders and parch button style.
2026-04-12 11:16:53 +01:00

12 lines
175 B
Vue

<template>
<div class="coming-soon-layout">
<slot />
</div>
</template>
<style scoped>
.coming-soon-layout {
min-height: 100vh;
background: var(--bg);
}
</style>