mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 17:55:22 +00:00
29 lines
874 B
Vue
29 lines
874 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 ml-2"
|
|
>
|
|
<a
|
|
class="transition-all duration-200 transform w-24 min-w-10"
|
|
href="https://github.com/nocodb/nocodb"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<img alt="NocoDB" src="~/assets/img/brand/nocodb.png" />
|
|
</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>
|