added button component
parent
1b5279b1cc
commit
5c4cf7e161
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div
|
||||
class="bg-primary flex h-screen w-full flex-col items-center px-12 text-white">
|
||||
class="bg-primary flex h-screen w-full flex-col items-center gap-4 px-12 text-white">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
<template>
|
||||
<button
|
||||
class="w-fit rounded-md p-2 font-bold transition-all duration-500 ease-out hover:px-4">
|
||||
<slot />
|
||||
</button>
|
||||
</template>
|
||||
Loading…
Reference in New Issue