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.
18 lines
297 B
18 lines
297 B
1 year ago
|
<template>
|
||
|
<a-menu-item class="nc-menu-item">
|
||
|
<div class="nc-menu-item-inner">
|
||
|
<slot />
|
||
|
</div>
|
||
|
</a-menu-item>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.nc-menu-item {
|
||
|
@apply !py-2 font-normal text-sm;
|
||
|
}
|
||
|
|
||
|
.nc-menu-item-inner {
|
||
|
@apply flex flex-row items-center gap-x-2.25;
|
||
|
}
|
||
|
</style>
|