Skip to content

Commit

Permalink
Merge pull request #3239 from LiskHQ/3238-wallet-responsiveness
Browse files Browse the repository at this point in the history
Fix Wallet responsiveness in small screens - Closes #3238
  • Loading branch information
reyraa authored Dec 16, 2020
2 parents f783112 + ae166d7 commit 73372cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ or "warn/action" ineastd of "red/green"
*************************/
}

@custom-media --xLarge-viewport (min-width: 1400px);
@custom-media --xLarge-viewport (max-width: 1600px);
@custom-media --large-viewport (max-width: 1400px);
@custom-media --medium-viewport (max-width: 1024px);
@custom-media --small-viewport (max-width: 768px);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

color: var(--color-strong-mystic);
margin: 0 0 10px;
box-sizing: border-box;
}

& .info {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
align-items: flex-start;
color: var(--color-maastricht-blue);
padding: 0 20px 10px;
box-sizing: border-box;
}

.discreetMode {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
align-items: flex-start;
padding: 0 20px 10px;
color: var(--color-ink-blue);
box-sizing: border-box;
}

.valuesRow {
Expand Down
3 changes: 1 addition & 2 deletions src/components/screens/wallet/overview/overview.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
.wrapper {
padding-bottom: var(--horizontal-padding-l);
padding-top: 30px;
max-width: 100%;

& > div:not(:nth-child(3)) {
min-width: 320px;
}
}

@media (--large-viewport) {
@media (--xLarge-viewport) {
.balanceChart {
width: calc(100% - 640px);
flex-basis: unset;
Expand Down

0 comments on commit 73372cd

Please sign in to comment.