Browse Source

fix(gui-v2): add GeneralNocoIcon

pull/3111/head
Wing-Kam Wong 2 years ago
parent
commit
ffe5113ad2
  1. 10
      packages/nc-gui-v2/pages/project/index/create-external.vue
  2. 4
      packages/nc-gui-v2/pages/project/index/create.vue

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