Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fifty-chicken-lay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@shopify/polaris': patch
---

Remove scrollbars from TextField vertical content
2 changes: 1 addition & 1 deletion polaris-react/src/components/TextField/TextField.scss
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ $spinner-icon-size: 12px;
color: var(--p-color-text-secondary);
padding: var(--p-space-200) var(--p-space-200) 0 var(--p-space-200);
max-height: 140px;
overflow: scroll;
overflow: auto;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we just remove this property altogether?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we remove overflow but leave max-height we get some unsightly overflow.

border: var(--p-border-width-025) solid transparent;
width: 100%;

Expand Down