mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 03:26:47 +00:00
24 lines
798 B
Vue
24 lines
798 B
Vue
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div class="flex flex-row flex-grow pl-0.5 pr-1 py-0.5 rounded-md w-full" style="max-width: calc(100% - 2.5rem)">
|
|
<div class="flex-grow min-w-20">
|
|
<div
|
|
data-testid="nc-workspace-menu"
|
|
class="flex items-center nc-workspace-menu overflow-hidden py-1.25 pr-0.25 justify-center w-full"
|
|
>
|
|
<a class="transition-all duration-200 transform" href="https://github.com/nocodb/nocodb" target="_blank">
|
|
<img alt="NocoDB" src="~/assets/img/brand/nocodb-full.png" class="h-10" />
|
|
</a>
|
|
<div class="flex flex-grow"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.nc-workspace-menu-item {
|
|
@apply flex items-center pl-2 py-2 gap-2 text-sm hover:text-black;
|
|
}
|
|
</style>
|