Skip to content

Commit

Permalink
Merge branch 'main' into styles/fix-failed-pill
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaalvarezd authored May 15, 2024
2 parents e7413cd + 11bf3d9 commit 138a94e
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
4 changes: 2 additions & 2 deletions api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "explorer-client",
"description": "Tangle Explorer UI",
"version": "4.0.0-rc.2",
"version": "4.0.0",
"author": "Martyn Janes <[email protected]>",
"type": "module",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions client/src/app/components/nova/OutputView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
height: auto;
}

@include phone-down {
flex-wrap: wrap;
}

.output-header {
display: flex;
width: 100%;
Expand Down Expand Up @@ -62,6 +66,9 @@
}
}

.row.middle {
margin: 5px 10px;
}
.amount-size {
width: min-content;
text-align: end;
Expand Down
14 changes: 7 additions & 7 deletions client/src/app/components/nova/OutputView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ const OutputView: React.FC<OutputViewProps> = ({ outputId, output, showCopyAmoun

const header = (
<div onClick={() => setIsExpanded(!isExpanded)} className="card--value card-header--wrapper">
<div
className={classNames("card--content--dropdown", {
opened: isExpanded,
})}
>
<DropdownIcon />
</div>
<div className="output-header">
<div
className={classNames("card--content--dropdown", {
opened: isExpanded,
})}
>
<DropdownIcon />
</div>
<button type="button" className="output-type--name color">
{NameHelper.getOutputTypeName(output.type)}
</button>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 138a94e

Please sign in to comment.