Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DDW-751] Fix issues related to minimum screen size #2719

Merged
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

### Fixes

- Fixed issues relating to minimum window size in Daedalus ([PR 2719](https://github.com/input-output-hk/daedalus/pull/2719))
- Updated "Trezor T" image shown on the "Pair a hardware wallet device" dialog ([PR 2712](https://github.com/input-output-hk/daedalus/pull/2712))
- Fixed transaction timestamps localization ([PR 2702](https://github.com/input-output-hk/daedalus/pull/2702))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
font-family: var(--font-regular);
height: 100vh;
justify-content: center;
padding: 20px 0;
position: fixed;
top: 0;
width: 100vw;
Expand All @@ -21,7 +22,8 @@
font-size: 16px;
line-height: 1.2;
margin-bottom: 20px;
max-height: 464px;
max-height: 210px;
min-height: 48px;
opacity: 0.8;
overflow-y: scroll;
padding: 12px 20px;
Expand Down
1 change: 1 addition & 0 deletions source/renderer/app/components/layout/TopBarLayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ $topBarHeight: 84px;

.content {
height: calc(100% - #{$topBarHeight});
overflow-y: overlay;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
.component {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
padding: 20px 0;
}

.centeredBox {
background-color: var(--theme-bordered-box-background-color);
border: var(--theme-bordered-box-border);
border-radius: 4px;
overflow: visible;
padding: 30px 30px 20px;
width: 620px;
}