Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Fixed [904706] Thimble pages not scrollable on iOS #237

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions public/stylesheets/makedetails.less
Expand Up @@ -199,3 +199,10 @@ body {
}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px){
.thimble-project-container {
// For iOS scrolling within iFrame
overflow: auto;
-webkit-overflow-scrolling: touch;
}
}