diff --git a/content/publish/form.json b/content/publish/form.json
index ae15c64cb..c28acd1f5 100644
--- a/content/publish/form.json
+++ b/content/publish/form.json
@@ -6,7 +6,7 @@
"name": "nft",
"label": "Data NFT",
"type": "nft",
- "help": "All metadata is stored on-chain in a newly deployed ERC-721 contract representing this asset.",
+ "help": "All metadata is stored on-chain in a newly deployed ERC-721 contract representing this asset, created with this name & symbol.",
"required": true
},
{
@@ -85,9 +85,9 @@
"fields": [
{
"name": "dataTokenOptions",
- "label": "Datatoken Name & Symbol",
+ "label": "Datatoken",
"type": "datatoken",
- "help": "The datatoken for this data set will be created with this name & symbol.",
+ "help": "The datatoken used for accessing this asset will be created with this name & symbol.",
"required": true
},
{
diff --git a/src/components/@shared/Form/FormFields/Datatoken/index.module.css b/src/components/@shared/Form/FormFields/Datatoken/index.module.css
index 65ccb2414..2e227b493 100644
--- a/src/components/@shared/Form/FormFields/Datatoken/index.module.css
+++ b/src/components/@shared/Form/FormFields/Datatoken/index.module.css
@@ -1,7 +1,7 @@
.datatoken {
display: grid;
- gap: var(--spacer);
- grid-template-columns: 3fr 1fr;
+ gap: calc(var(--spacer) / 2);
+ grid-template-columns: 1fr 4fr;
margin-bottom: var(--spacer);
align-items: center;
}
diff --git a/src/components/@shared/Form/FormFields/Datatoken/index.tsx b/src/components/@shared/Form/FormFields/Datatoken/index.tsx
index e3355db90..955ce2a5a 100644
--- a/src/components/@shared/Form/FormFields/Datatoken/index.tsx
+++ b/src/components/@shared/Form/FormFields/Datatoken/index.tsx
@@ -23,14 +23,14 @@ export default function Datatoken(props: InputProps): ReactElement {
return (