Skip to content

Commit

Permalink
Remove extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed May 2, 2019
1 parent 7ebd8f9 commit 3f7bdc6
Showing 1 changed file with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { css } from 'glamor';
import { createBasicStyleSet } from 'react-film';

export default function createSuggestedActionsStyleSet({
paddingRegular,
transcriptOverlayButtonBackground,
transcriptOverlayButtonBackgroundOnDisabled,
transcriptOverlayButtonBackgroundOnFocus,
Expand All @@ -16,7 +17,7 @@ export default function createSuggestedActionsStyleSet({
flipperBoxWidth: 40,
flipperSize: 20,
scrollBarHeight: 6,
scrollBarMargin: 2,
scrollBarMargin: 2
});

const flipper = css({
Expand Down Expand Up @@ -51,6 +52,20 @@ export default function createSuggestedActionsStyleSet({
},
[`& .${ leftFlipper + '' } > div.slider`]: { left: 0 },
[`& .${ rightFlipper + '' } > div.slider`]: { right: 0 }
},

'& > div': {
scrollbarWidth: 'none',

'& > ul > li': {
'&:first-child': {
paddingLeft: paddingRegular / 2
},

'&:last-child': {
paddingRight: paddingRegular / 2
}
}
}
});

Expand Down

0 comments on commit 3f7bdc6

Please sign in to comment.