Skip to content

Commit

Permalink
Merge pull request ava-labs#142 from ava-labs/dev
Browse files Browse the repository at this point in the history
fix mobile width issues
  • Loading branch information
kanatliemre authored Jan 20, 2021
2 parents 1f1e7bf + d490319 commit f75dcbe
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/modals/ExportKeys.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export default class ExportKeys extends Vue {
@include main.mobile-device {
.export_body {
max-width: 100%;
}
}
</style>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class HdDerivationList extends Vue {
</script>
<style scoped lang="scss">
.hd_deriv_modal_body {
width: 600px;
//width: 600px;
max-width: 100%;
padding: 0px;
}
Expand Down
3 changes: 3 additions & 0 deletions src/components/modals/ImportKeys.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ export default class ImportKeys extends Vue {
}
@include main.mobile-device {
.add_key_body {
max-width: 100%;
}
}
</style>

Expand Down
8 changes: 8 additions & 0 deletions src/components/modals/MnemonicPhrase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export default class MnemonicPhrase extends Vue {
}
</script>
<style scoped lang="scss">
@use '../../main';
.mnemonic_modal_body {
/*width: 600px;*/
max-width: 400px;
Expand All @@ -52,4 +54,10 @@ export default class MnemonicPhrase extends Vue {
border-radius: 2px;
padding: 6px 12px;
}
@include main.mobile-device {
.mnemonic_modal_body {
max-width: 100%;
}
}
</style>
1 change: 1 addition & 0 deletions src/components/modals/PaperWallet/PaperWallet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ export default class PaperWallet extends Vue {
width: 525px;
max-width: 100%;
padding: 30px;
margin: 0px auto;
}
.qr_body p {
Expand Down

0 comments on commit f75dcbe

Please sign in to comment.