diff --git a/__tests__/fixtures/tailwind.css b/__tests__/fixtures/tailwind.css index 9aae44d35..9a7a6407a 100644 --- a/__tests__/fixtures/tailwind.css +++ b/__tests__/fixtures/tailwind.css @@ -2246,6 +2246,14 @@ button, -ms-overflow-style: -ms-autohiding-scrollbar; } +.scrolling-touch { + -webkit-overflow-scrolling: touch; +} + +.scrolling-auto { + -webkit-overflow-scrolling: auto; +} + .w-1 { width: 0.25rem; } @@ -5181,6 +5189,14 @@ button, -ms-overflow-style: -ms-autohiding-scrollbar; } + .sm\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .sm\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + .sm\:w-1 { width: 0.25rem; } @@ -8117,6 +8133,14 @@ button, -ms-overflow-style: -ms-autohiding-scrollbar; } + .md\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .md\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + .md\:w-1 { width: 0.25rem; } @@ -11053,6 +11077,14 @@ button, -ms-overflow-style: -ms-autohiding-scrollbar; } + .lg\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .lg\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + .lg\:w-1 { width: 0.25rem; } @@ -13989,6 +14021,14 @@ button, -ms-overflow-style: -ms-autohiding-scrollbar; } + .xl\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .xl\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + .xl\:w-1 { width: 0.25rem; } diff --git a/docs/source/_layouts/documentation.blade.php b/docs/source/_layouts/documentation.blade.php index 290906b87..48b5f2b6d 100644 --- a/docs/source/_layouts/documentation.blade.php +++ b/docs/source/_layouts/documentation.blade.php @@ -3,7 +3,7 @@ @section('body')