diff --git a/api/package-lock.json b/api/package-lock.json index a90620a03..453914f7d 100644 --- a/api/package-lock.json +++ b/api/package-lock.json @@ -1,12 +1,12 @@ { "name": "explorer-api", - "version": "4.0.0-rc.2", + "version": "4.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "explorer-api", - "version": "4.0.0-rc.2", + "version": "4.0.0", "license": "Apache-2.0", "dependencies": { "@google-cloud/logging-winston": "^6.0.0", diff --git a/api/package.json b/api/package.json index 010c88749..8783580ec 100644 --- a/api/package.json +++ b/api/package.json @@ -1,7 +1,7 @@ { "name": "explorer-api", "description": "API for Tangle Explorer", - "version": "4.0.0-rc.2", + "version": "4.0.0", "author": "Martyn Janes ", "repository": { "type": "git", diff --git a/client/package-lock.json b/client/package-lock.json index 2db8b5ca3..ce7983a5d 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "explorer-client", - "version": "4.0.0-rc.2", + "version": "4.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "explorer-client", - "version": "4.0.0-rc.2", + "version": "4.0.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/client/package.json b/client/package.json index 889a0bede..7c0ef491e 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "explorer-client", "description": "Tangle Explorer UI", - "version": "4.0.0-rc.2", + "version": "4.0.0", "author": "Martyn Janes ", "type": "module", "repository": { diff --git a/client/src/app/components/nova/OutputView.scss b/client/src/app/components/nova/OutputView.scss index d5b23291c..c4affc334 100644 --- a/client/src/app/components/nova/OutputView.scss +++ b/client/src/app/components/nova/OutputView.scss @@ -33,6 +33,10 @@ height: auto; } + @include phone-down { + flex-wrap: wrap; + } + .output-header { display: flex; width: 100%; @@ -62,6 +66,9 @@ } } + .row.middle { + margin: 5px 10px; + } .amount-size { width: min-content; text-align: end; diff --git a/client/src/app/components/nova/OutputView.tsx b/client/src/app/components/nova/OutputView.tsx index 92eabe0e3..cc591cb7e 100644 --- a/client/src/app/components/nova/OutputView.tsx +++ b/client/src/app/components/nova/OutputView.tsx @@ -92,14 +92,14 @@ const OutputView: React.FC = ({ outputId, output, showCopyAmoun const header = (
setIsExpanded(!isExpanded)} className="card--value card-header--wrapper"> -
- -
+
+ +
diff --git a/package.json b/package.json index c54430ff0..3024c5272 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "explorer", "description": "Tangle Explorer", - "version": "4.0.0-rc.2", + "version": "4.0.0", "scripts": { "setup:client": "cd client && npm install && npm run postinstall", "setup:api": "cd api && npm install && npm run build-compile && npm run build-config",