Skip to content

Commit

Permalink
fix(responsive): fix android
Browse files Browse the repository at this point in the history
  • Loading branch information
lailabjil committed Feb 6, 2024
1 parent 6f47fa1 commit 1e7cd35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edt",
"version": "3.10.12",
"version": "3.10.13",
"dateVersion": "06/02/2024",
"licence": "MIT",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const useStyles = makeStylesEdt<{
},
pageMobileTablet: {
height: "100%",
maxHeight: isIOS ? stylePageMobileTabletWhenIOS(isOpen) : "94vh",
//maxHeight: isIOS ? stylePageMobileTabletWhenIOS(isOpen) : "94vh",
},
}));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ const useStyles = makeStylesEdt<{ isIOS: boolean; modifiable: boolean; isOpen: b
surveyPageBoxTablet: {
height: "100%",
maxHeight: isIOS ? (isOpen ? "80vh" : "87vh") : "100vh",
marginTop: "4rem",
marginTop: isIOS ? "4rem" : "",
},
outletBoxDesktop: {
flexGrow: "12",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/work-time/WorkTime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const useStyles = makeStylesEdt({ "name": { WorkTimePage } })(() => ({
},
pageMobileTablet: {
height: "100%",
maxHeight: "94vh",
//maxHeight: "94vh",
display: "flex",
flexDirection: "column",
},
Expand Down

0 comments on commit 1e7cd35

Please sign in to comment.