Replace Tailwind utility color classes with CSS custom properties, remove rounded corners, use dashed borders and parch button style.
12 lines
175 B
Vue
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>
|