mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
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. 
This commit is contained in:
@@ -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)`,
|
||||
|
||||
6
upcoming-release-notes/1458.md
Normal file
6
upcoming-release-notes/1458.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
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.
|
||||
Reference in New Issue
Block a user