Browse Source

Merge pull request #3111 from nocodb/fix/gui-v2-missing-logos

fix(gui-v2): add missing logos
pull/3113/head
navi 2 years ago committed by GitHub
parent
commit
3b5b82fba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui-v2/layouts/base.vue
  2. 10
      packages/nc-gui-v2/pages/project/index/create-external.vue
  3. 4
      packages/nc-gui-v2/pages/project/index/create.vue

2
packages/nc-gui-v2/layouts/base.vue

@ -21,7 +21,7 @@ const logout = () => {
<a-layout class="!flex-col"> <a-layout class="!flex-col">
<a-layout-header class="flex !bg-primary items-center text-white pl-1 pr-4 shadow-lg"> <a-layout-header class="flex !bg-primary items-center text-white pl-1 pr-4 shadow-lg">
<div <div
v-if="route.name === 'index'" v-if="route.name === 'index' || route.name === 'project-index-create' || route.name === 'project-index-create-external'"
class="transition-all duration-200 p-2 cursor-pointer transform hover:scale-105" class="transition-all duration-200 p-2 cursor-pointer transform hover:scale-105"
@click="navigateTo('/')" @click="navigateTo('/')"
> >

10
packages/nc-gui-v2/pages/project/index/create-external.vue

@ -219,11 +219,11 @@ onMounted(() => {
</script> </script>
<template> <template>
<a-card <a-card class="max-w-[600px] mx-auto !mt-100px !mb-5 !shadow-md">
class="max-w-[600px] mx-auto !mt-15 !mb-5 !shadow-md" <GeneralNocoIcon />
:title="$t('activity.createProject')"
:head-style="{ textAlign: 'center', fontWeight: '700' }" <h3 class="text-3xl text-center font-semibold mt-8 mb-4">{{ $t('activity.createProject') }}</h3>
>
<a-form <a-form
ref="form" ref="form"
:model="formState" :model="formState"

4
packages/nc-gui-v2/pages/project/index/create.vue

@ -58,7 +58,9 @@ onMounted(async () => {
<template> <template>
<a-card :loading="isLoading" class="w-[500px] mx-auto !mt-100px shadow-md"> <a-card :loading="isLoading" class="w-[500px] mx-auto !mt-100px shadow-md">
<h3 class="text-3xl text-center font-semibold mb-2">{{ $t('activity.createProject') }}</h3> <GeneralNocoIcon />
<h3 class="text-3xl text-center font-semibold mt-8 mb-2">{{ $t('activity.createProject') }}</h3>
<a-form ref="form" :model="formState" name="basic" layout="vertical" autocomplete="off" @finish="createProject"> <a-form ref="form" :model="formState" name="basic" layout="vertical" autocomplete="off" @finish="createProject">
<a-form-item :label="$t('labels.projName')" name="title" :rules="nameValidationRules" class="my-10 mx-10"> <a-form-item :label="$t('labels.projName')" name="title" :rules="nameValidationRules" class="my-10 mx-10">

Loading…
Cancel
Save