Skip to content

Commit

Permalink
Merge pull request #7 from settle-club/sdk
Browse files Browse the repository at this point in the history
Fixed the sizing issue of iframe for devices having height less than …
  • Loading branch information
NikhilManapure authored Aug 16, 2024
2 parents 8a0e217 + 5d12331 commit 1414173
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@
visibility: hidden;
opacity: 0;
}
@media (max-height: 650px) {
#sdk-modal-content {
transform: scale(0.8);
height: 110%;
}
}
`;
document.head.appendChild(style);
})(window);

0 comments on commit 1414173

Please sign in to comment.