Skip to content

Commit

Permalink
fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Assem-Uber committed Nov 14, 2024
1 parent 118605b commit 65ec837
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const cssStylesObj = {
gap: theme.sizing.scale600,
padding: `${theme.sizing.scale500} 0`,
}),
timelineEventLableAndTime: (theme) => ({
timelineEventLabelAndTime: (theme) => ({
display: 'flex',
flexDirection: 'column',
gap: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function WorkflowHistoryTimelineGroup({
<div className={cls.groupContainer}>
<div className={cls.timelineEventHeader}>
<WorkflowHistoryEventStatusBadge status={status} size="medium" />
<div className={cls.timelineEventLableAndTime}>
<div className={cls.timelineEventLabelAndTime}>
<div className={cls.timelineEventsLabel}>{label}</div>
<div suppressHydrationWarning className={cls.timelineEventsTime}>
{timeLabel}
Expand Down
14 changes: 7 additions & 7 deletions src/views/workflow-history/workflow-history.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ const cssStylesObj = {
}),
compactSection: (theme) => ({
display: 'none',
flexDirection: 'column',
width: '362px',
maxHeight: `calc(100vh - ${theme.sizing.scale900})`, // fill page height excluding page bottom margin
overflow: 'auto',
position: 'sticky',
top: 0,
paddingRight: theme.sizing.scale800,
[theme.mediaQuery.large]: {
display: 'flex',
flexDirection: 'column',
width: '362px',
maxHeight: `calc(100vh - ${theme.sizing.scale900})`, // fill page height excluding page bottom margin
overflow: 'auto',
position: 'sticky',
top: 0,
paddingRight: theme.sizing.scale800,
},
}),
compactCardContainer: (theme) => ({
Expand Down

0 comments on commit 65ec837

Please sign in to comment.