Skip to content

Commit a12f0f8

Browse files
committed
fix(FileTabs): limit the max width * 11
1 parent eb6a956 commit a12f0f8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/components/organisms/FileTabs/FileTabs.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ const TabsContainerElement = tasty(Flex, {
6161
'[data-is-right-fade]': '3x right',
6262
'[data-is-right-fade] & [data-is-left-fade]': '3x left right',
6363
},
64+
transition: 'fade',
6465
'--scrollbar-radius': '1ow',
6566
'--scrollbar-width': '.75x',
6667
'--scrollbar-outline-width': '1px',

src/tasty/styles/transition.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { parseStyle } from '../utils/styles';
22

33
const MAP = {
4+
fade: ['mask'],
45
move: ['transform'],
56
rotate: ['transform'],
67
scale: ['transform'],

0 commit comments

Comments
 (0)