We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5e894 commit 62edc9eCopy full SHA for 62edc9e
.changeset/chilled-houses-impress.md
@@ -0,0 +1,5 @@
1
+---
2
+"@aws-amplify/ui": patch
3
4
+
5
+fix: regression in scrollview that shows scrollbars when unneeded
packages/ui/src/theme/css/component/scrollView.scss
@@ -1,14 +1,13 @@
.amplify-scrollview {
display: block;
- overflow: scroll;
+ overflow: auto;
// @TODO: Deprecated - Remove in 3.0
&--horizontal {
6
overflow-x: scroll;
7
overflow-y: initial;
8
}
9
10
&--vertical {
11
- // @TODO: Deprecated - Remove in 3.0
12
overflow-x: initial;
13
overflow-y: scroll;
14
0 commit comments