mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
594 B
30 lines
594 B
<template> |
|
<a-menu-item class="nc-menu-item"> |
|
<div class="nc-menu-item-inner"> |
|
<slot /> |
|
</div> |
|
</a-menu-item> |
|
</template> |
|
|
|
<style lang="scss"> |
|
.ant-dropdown-menu-item.nc-menu-item { |
|
@apply py-2 px-2 mx-1.5 font-normal text-sm rounded-md overflow-hidden hover:bg-gray-100; |
|
} |
|
|
|
.nc-menu-item-inner { |
|
@apply flex flex-row items-center gap-x-2; |
|
} |
|
|
|
.nc-menu-item > .ant-dropdown-menu-title-content { |
|
// Not Icon |
|
:not(.nc-icon):not(.material-symbols) { |
|
line-height: 0.95; |
|
} |
|
|
|
@apply flex flex-row items-center; |
|
} |
|
|
|
.nc-menu-item::after { |
|
background: none; |
|
} |
|
</style>
|
|
|