Skip to content

Commit

Permalink
Merge branch 'develop' into feat-disk-usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Feb 3, 2024
2 parents 1e25ecc + 2a63bc0 commit 5963320
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .ckb-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.113.0
v0.113.1
29 changes: 14 additions & 15 deletions packages/neuron-ui/src/components/Send/send.module.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,7 @@
@import '../../styles/mixin.scss';
$bottomHeight: 84px;
$headerHeight: 104px;

.content {
overflow-y: scroll;
margin-bottom: 60px;
height: calc(100vh - $headerHeight - $bottomHeight);
}

.withFullySynced {
.content {
height: calc(100vh - $headerHeight - $bottomHeight - 60px);
}
}
$bottomHeight: 24px;
$headerHeight: 72px;
$noticeHeight: 60px;

.layout {
display: flex;
Expand Down Expand Up @@ -51,15 +40,23 @@ $headerHeight: 104px;
}
}

&.withFullySynced {
.right {
height: calc(100vh - $headerHeight - $bottomHeight - $noticeHeight);
}
}

.right {
margin-left: 16px;
flex: 1;
position: relative;
border-radius: 16px;
background: var(--secondary-background-color);
min-height: 436px;
height: calc(100vh - $headerHeight - $bottomHeight);
$actionHeight: 108px;

.content {
$contentPadding: 16px;
padding: 16px;
/**
These styles are for showing the full tips, because of content needs to scroll on the y-axis.
Expand All @@ -70,6 +67,8 @@ $headerHeight: 104px;
left: -48px;
padding-left: 64px;
width: calc(100% - 32px);
overflow-y: scroll;
height: calc(100% - $actionHeight - 2 * $contentPadding);
}

.rightFooter {
Expand Down

1 comment on commit 5963320

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 7765907622

Please sign in to comment.