Skip to content

Commit

Permalink
add browser specific workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
P1tt187 committed Apr 11, 2018
1 parent d26e94e commit a899320
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions resources/assets/css/browserspecific.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* fix for never ending popups on ios */
@supports (-webkit-overflow-scrolling: touch) {
/* CSS specific to iOS devices */
body {
cursor: pointer;
}
}
1 change: 1 addition & 0 deletions resources/assets/sass/lara.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
@import "../css/monthViewResponsive.css";
@import "../css/palette.css";
@import "../css/templateManagement/templateManagement.css";
@import "../css/browserspecific.css";

1 comment on commit a899320

@P1tt187
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.