mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
28 lines
472 B
Vue
28 lines
472 B
Vue
<template>
|
|
<n-el
|
|
tag="div"
|
|
class="el h-full px-3 cursor-pointer"
|
|
>
|
|
<n-space
|
|
align="center"
|
|
class="h-full"
|
|
>
|
|
<slot />
|
|
</n-space>
|
|
</n-el>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
<style scoped>
|
|
.el {
|
|
color: var(--n-text-color);
|
|
background-color: var(--n-color);
|
|
transition: 0.3s var(--cubic-bezier-ease-in-out);
|
|
}
|
|
.el:hover {
|
|
background-color: var(--button-color-2-hover);
|
|
color: var(--n-text-color-hover);
|
|
}
|
|
</style>
|