From 1c00f5aa04960434d6f31a18ab4bc532d64898f1 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Thu, 4 Oct 2018 10:05:02 +0200 Subject: [PATCH] Hotfix iOS sign in issues (maybe) --- app/.gitignore | 1 + app/client/style/iosButtonFix.css | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 app/client/style/iosButtonFix.css diff --git a/app/.gitignore b/app/.gitignore index 88a0a828..086ca397 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -4,6 +4,7 @@ settings.json public/components public/_imports.html +private/oldClient nohup.out node_modules dump diff --git a/app/client/style/iosButtonFix.css b/app/client/style/iosButtonFix.css new file mode 100644 index 00000000..fa3799ec --- /dev/null +++ b/app/client/style/iosButtonFix.css @@ -0,0 +1,8 @@ +/* + * iOS doens't believe in click events for some elements. + * This is here to convince it to allow buttons to be clickable + */ + button { + cursor: pointer; + } +