Skip to content

Commit fecb1ac

Browse files
330 Removes hardcoded value
1 parent 8b67ec9 commit fecb1ac

File tree

1 file changed

+2
-4
lines changed
  • packages/orchestrator-ui-components/src/components/WfoTimeline

1 file changed

+2
-4
lines changed

packages/orchestrator-ui-components/src/components/WfoTimeline/styles.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const getTimelineStyles = ({ theme }: WfoTheme) => {
4646
const timelinePanelStyle = css({
4747
backgroundColor: theme.colors.body,
4848
borderRadius: theme.border.radius.medium,
49-
outline: `${timelineOutlineWidthPx} solid white`, // todo use theme
49+
outline: `${timelineOutlineWidthPx} solid ${theme.colors.emptyShade}`,
5050
height: timelineHeightPx,
5151
marginTop: timelineOutlineWidthPx,
5252
marginBottom: timelineOutlineWidthPx,
@@ -58,11 +58,9 @@ export const getTimelineStyles = ({ theme }: WfoTheme) => {
5858
paddingRight: theme.font.baseline * 4,
5959
position: 'sticky',
6060
top: timelineOutlineWidthPx,
61-
zIndex: 2, // todo find out why Options button and the process icons got z-index.
61+
zIndex: 2, // Some EUI components have a zIndex
6262
display: 'flex',
6363

64-
// opacity: 0.3,
65-
6664
'& > button': {
6765
flexGrow: 2,
6866
},

0 commit comments

Comments
 (0)