From 02d6391e5cacb51b85cb5e00b9b3421e9cd4f876 Mon Sep 17 00:00:00 2001 From: Enrico Scherlies Date: Sun, 16 May 2021 16:45:46 +0200 Subject: [PATCH] Added a note for missing issues I have had layout issues on Safari and after debugging I found, that the issue was related to a missing `` in my application. After searching through the Elm Slack channel I saw that many people experienced the same issue. This PR adds a note to the documentation stating that a missing `` might cause issues, to save a lot of time for a lot of people. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3113040..98c28a6 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,10 @@ The work is based off of a rewrite of the [Style Elements](https://github.com/md The community around `elm-ui` is maintaining a collection of examples called the [elm-ui-cookbook](https://github.com/rofrol/elm-ui-cookbook). If you are just starting out with `elm-ui`, or get stuck on specific things, this can be a great resource. +## Notes + +Make sure to have `` on top of your application; otherwise, things might get messed up in some browsers. + ## Contributing Want to help out fixing bugs or reporting issues?