mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
1a7b570c82
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
17 lines
344 B
Vue
17 lines
344 B
Vue
<template>
|
|
<BaseButton class="fancy-button">
|
|
<slot />
|
|
</BaseButton>
|
|
</template>
|
|
|
|
<style scoped>
|
|
button {
|
|
appearance: none;
|
|
background-color: #FAFBFC;
|
|
border: 1px solid rgba(27, 31, 35, 0.15);
|
|
border-radius: 6px;
|
|
box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
|
|
color: #24292E;
|
|
}
|
|
</style>
|