Skip to content

Commit

Permalink
aum/feat: fix-iframe-UI-issues (deriv-com#10888)
Browse files Browse the repository at this point in the history
* fix: fixed the wallets-app (AppContent) height for desktop and responsive

* fix: fix issues related to iframe

* chore: empty commit

* aum/chore: separate cashier modules into cashier folder (deriv-com#10708)

* refactor: created cashier folder and separated deposit-fiat-module

* refactor: added the deposit-crypto-module

* chore: moved cashier folder inside src

* refactor: created deposit-crypto folder

* refactor: added transfer module

* refactor: added transactions module

* refactor: moved cashier module inside features/cashier

* refactor: replaced components from screens with modules

* refactor: moved withdrawal-email-verification to modules

* chore: moved sub-components for deposit-crypto in components folder

* chore: moved sub-components of transfer to components folder

* chore: export transfer components as modules

* chore: removed the screens folder

* feat: transactions-module

* feat: transfer-module

* feat: withdrawal-module

* chore: renamed TransactionsCryptoRow to TransactionsPendingRow

* chore: renamed TransactionsCrypto to TransactionsPending

* chore: updated Transactions-module with master

* Merge branch 'master' of github.com:binary-com/deriv-app into cashier-folder-wallets

* chore: fixed merge conflicts

* chore: rename Withdrawal to WithdrawalVerification

* chore: trial to remove translations for ar.json

* chore: removed more unwanted commits from master

* chore: removing changes from master

* chore: pushing

* feat: ResetBalanceModule

* chore: updated transactions

* chore: removed screens

* chore: empty commit

* fix: fixed the iframe-width for widescreen displays

* chore: removed redundant style

* chore: empty commit

* chore: removed unwanted files from PR

* chore: removed redundant styling for height from AppContent

* chore: changed unit to rem
  • Loading branch information
aum-deriv authored Oct 24, 2023
1 parent 21342d5 commit 3676af8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/wallets/src/AppContent.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
align-items: center;
gap: 24px;
width: 100%;
min-height: calc(100vh - 8.4rem); // 100vh - (4.8rem header + 3.6rem footer)
align-self: stretch;
background: var(--system-light-7-secondary-background, #f2f3f4);
height: calc(100vh - 8.4rem); // 100vh - (4.8rem header + 3.6rem footer)

@include mobile {
overflow-y: auto;
Expand Down
6 changes: 3 additions & 3 deletions packages/wallets/src/features/cashier/WalletCashier.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.wallets-cashier-content {
padding: 24px;
padding: 2.4rem 2.4rem 0px;
display: flex;
gap: 24px;
gap: 2.4rem;
justify-content: center;
flex: 1;
background-color: #ffffff;

@include mobile {
padding: 16px;
padding: 1.6rem;
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
.wallets-deposit-fiat {
&__iframe {
width: 50%;
height: 65vh;
max-width: 58.8rem;
height: 100%;
border: none;

@include mobile {
width: 100%;
}
}
}

0 comments on commit 3676af8

Please sign in to comment.