Fix iOS scroll physics (#1950)

* Fix iOS scroll physics

* update changelog and bump version
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1eeb36..9255bea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## 0.28.3+1
+* Fix scroll physics and behavior for Safari on iOS.
+
 ## 0.28.3
 * Support a new `{@youtube}` directive in documentation comments to embed
   YouTube videos.
@@ -137,7 +140,7 @@
 ## 0.22.0
 * Documentation updates. (#1760)
 * Fix incompatibility with head analyzer (endsWith exception). (#1768)
-* Added the ability to run external tools on a section of documentation and 
+* Added the ability to run external tools on a section of documentation and
   replace it with the output of the tool.
 
 ## 0.21.1
diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml
index 797bade..efd59e4 100644
--- a/dartdoc_options.yaml
+++ b/dartdoc_options.yaml
@@ -1,4 +1,4 @@
 dartdoc:
   linkToSource:
     root: '.'
-    uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.3/%f%#L%l%'
+    uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.3+1/%f%#L%l%'
diff --git a/lib/resources/styles.css b/lib/resources/styles.css
index c53521f..6584a75 100644
--- a/lib/resources/styles.css
+++ b/lib/resources/styles.css
@@ -28,7 +28,7 @@
 body {
   display: flex;
   flex-direction: column;
-  min-height: 100vh;
+  -webkit-overflow-scrolling: touch;
 }
 
 header {
@@ -88,7 +88,6 @@
 ::-webkit-scrollbar-thumb{ background-color: #CCC; }
 ::-webkit-scrollbar-thumb:hover{ background-color: #CCC; }
 ::-webkit-scrollbar{ width: 4px; }
-::-webkit-overflow-scrolling: touch;
 
 .main-content::-webkit-scrollbar{ width: 8px; }
 
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 156b762..c80190f 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -1,2 +1,2 @@
 // Generated code. Do not modify.
-const packageVersion = '0.28.3';
+const packageVersion = '0.28.3+1';
diff --git a/pubspec.yaml b/pubspec.yaml
index 1936e70..596cfbe 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Run `grind build` after updating.
-version: 0.28.3
+version: 0.28.3+1
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc