Files
nocodb/packages/nc-gui/components/nc/MenuItem.vue
Mert E 0d2899e6e6 fix: add virtual scroll to pagination list (#8863)
* fix: add virtual scroll to pagination list

* fix: use max-height instead of height

* fix: pr requested change
2024-06-26 18:18:30 +05:30

45 lines
871 B
Vue

<script setup lang="ts">
import type { StyleValue } from '@vue/runtime-dom'
defineProps<{
style?: StyleValue
}>()
defineOptions({
inheritAttrs: false,
})
</script>
<template>
<div class="w-full" :style="style">
<a-menu-item v-bind="$attrs" class="nc-menu-item">
<div class="nc-menu-item-inner">
<slot />
</div>
</a-menu-item>
</div>
</template>
<style lang="scss">
.ant-dropdown-menu-item.nc-menu-item {
@apply p-2 mx-1.5 font-normal text-sm xs:(text-base py-3 px-3.5 mx-0) rounded-md overflow-hidden hover:bg-gray-100;
}
.nc-menu-item-inner {
@apply flex flex-row items-center gap-x-2 text-sm;
}
.nc-menu-item > .ant-dropdown-menu-title-content {
// Not Icon
:not(.nc-icon):not(.material-symbols) {
line-height: 1.5;
}
@apply flex flex-row items-center;
}
.nc-menu-item::after {
background: none;
}
</style>