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 321f772 commit f6513faCopy full SHA for f6513fa
src/components/intercept/config/intercept-target-list.tsx
@@ -79,14 +79,20 @@ const TargetButton = styled(Button)<{
79
}
80
`;
81
82
-const TargetText = styled.span<{ ellipseDirection: 'left' | 'right' }>`
+const TargetText = styled.div<{ ellipseDirection: 'left' | 'right' }>`
83
flex-grow: 1;
84
85
overflow: hidden;
86
white-space: nowrap;
87
text-overflow: ellipsis;
88
text-align: center;
89
90
+ &, & * {
91
+ overflow: hidden;
92
+ text-overflow: ellipsis;
93
+ white-space: nowrap;
94
+ }
95
+
96
${p => p.ellipseDirection === 'left' ?
97
'direction: rtl;'
98
: ''}
0 commit comments