Skip to content

Commit cc46d22

Browse files
committed
chore: improve UX at sign screen
Start to implement improvements at sign screen to solve the issue when the signer can't see the document by an easy way. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 0f85c9f commit cc46d22

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

src/Components/RightSidebar/RightSidebar.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,16 @@ export default {
8282
},
8383
}
8484
</script>
85+
<style lang="scss" scoped>
86+
87+
@media (max-width: 512px) {
88+
.app-sidebar {
89+
height: unset;
90+
top: unset;
91+
bottom: 0;
92+
::v-deep .app-sidebar-tabs__content{
93+
min-height: unset;
94+
}
95+
}
96+
}
97+
</style>

src/Components/RightSidebar/SignTab.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,12 @@ export default {
6767
header {
6868
text-align: center;
6969
width: 100%;
70-
margin-top: 1em;
71-
margin-bottom: 3em;
70+
}
71+
@media (min-width: 513px) {
72+
header {
73+
margin-top: 1em;
74+
margin-bottom: 3em;
75+
}
7276
}
7377
main {
7478
flex-direction: column;

0 commit comments

Comments
 (0)