Skip to content
Snippets Groups Projects
Unverified Commit b8454682 authored by Sean Tsai's avatar Sean Tsai Committed by GitHub
Browse files

Bugfix: remove select component inner scrollbar (#1458)

In some situations the text in the Select component will be too big,
which will make the inner vertical scrollbar appear. This PR is to hide
the vertical scrollbar.

![截圖 2023-08-04 下午3 06
38](https://github.com/actualbudget/actual/assets/67775387/be6c066d-de44-4944-b02e-5d265c84bc61)
parent 421aa65e
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ export default function Select<Value extends string>({
<span
style={{
display: 'flex',
overflowX: 'hidden',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
maxWidth: `calc(100% - ${arrowSize + 5}px)`,
......
---
category: Bugfix
authors: [aleetsaiya]
---
In some situations the text in the Select component will be too big, which will make the inner vertical scrollbar appear. This PR is to hide the vertical scrollbar.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment