Skip to content

Commit 00c3f0e

Browse files
fix lint
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
1 parent 5d88f33 commit 00c3f0e

File tree

1 file changed

+23
-20
lines changed

1 file changed

+23
-20
lines changed

src/views/shared/workflows-list/workflows-list.styles.ts

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -41,26 +41,29 @@ export const styled = {
4141
paddingRight: $theme.sizing.scale600,
4242
whiteSpace: 'wrap',
4343
})),
44-
SortableHeaderCell: createStyled('button', ({ $theme }: { $theme: Theme }) => ({
45-
...$theme.typography.LabelSmall,
46-
display: 'flex',
47-
alignItems: 'center',
48-
columnGap: $theme.sizing.scale300,
49-
color: $theme.colors.contentSecondary,
50-
paddingTop: $theme.sizing.scale400,
51-
paddingBottom: $theme.sizing.scale400,
52-
paddingLeft: $theme.sizing.scale600,
53-
paddingRight: $theme.sizing.scale600,
54-
whiteSpace: 'nowrap' as const,
55-
overflow: 'hidden',
56-
textOverflow: 'ellipsis',
57-
background: 'none',
58-
border: 'none',
59-
cursor: 'pointer',
60-
':hover': {
61-
color: $theme.colors.contentPrimary,
62-
},
63-
})),
44+
SortableHeaderCell: createStyled(
45+
'button',
46+
({ $theme }: { $theme: Theme }) => ({
47+
...$theme.typography.LabelSmall,
48+
display: 'flex',
49+
alignItems: 'center',
50+
columnGap: $theme.sizing.scale300,
51+
color: $theme.colors.contentSecondary,
52+
paddingTop: $theme.sizing.scale400,
53+
paddingBottom: $theme.sizing.scale400,
54+
paddingLeft: $theme.sizing.scale600,
55+
paddingRight: $theme.sizing.scale600,
56+
whiteSpace: 'nowrap',
57+
overflow: 'hidden',
58+
textOverflow: 'ellipsis',
59+
background: 'none',
60+
border: 'none',
61+
cursor: 'pointer',
62+
':hover': {
63+
color: $theme.colors.contentPrimary,
64+
},
65+
})
66+
),
6467
GridRow: createStyled<'a', { $gridTemplateColumns: string }>(
6568
'a',
6669
({ $theme, $gridTemplateColumns }) => ({

0 commit comments

Comments
 (0)