Skip to content

Commit

Permalink
(fix) O3-2852: Fix the viewport size of the Start Visit form on tablet (
Browse files Browse the repository at this point in the history
#1765)

* Overlapping issue fixed in visit-form

* Make viewport height responsive - different values for desktop and tablet

---------

Co-authored-by: Mutesasira Moses <mozzymutesa@gmail.com>
Co-authored-by: Dennis Kigen <kigen.work@gmail.com>
  • Loading branch information
3 people committed May 8, 2024
1 parent 965f550 commit 4637063
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -13,7 +13,6 @@

.heading {
@include type.type-style("heading-03");

margin: spacing.$spacing-05;
}

Expand Down Expand Up @@ -46,7 +45,7 @@
display: flex;
flex-direction: column;
justify-content: space-between;
height: calc(100vh - 6rem);
height: var(--desktop-workspace-window-height);
}

.button {
Expand Down Expand Up @@ -104,4 +103,8 @@
}
}
}

.form {
height: var(--tablet-workspace-window-height);
}
}

0 comments on commit 4637063

Please sign in to comment.