Skip to content

Commit

Permalink
1552 Remove last line of workflow timeline card
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi2704 committed Dec 3, 2024
1 parent 549b734 commit f5acacd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .changeset/lazy-suns-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@orchestrator-ui/orchestrator-ui-components': patch
---

1552 Remove last line of workflow timeline card
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,23 @@ export const getSubscriptionDetailStyles = ({ theme }: WfoTheme) => {
});
const workflowTargetStyle = css({ fontWeight: theme.font.weight.bold });

const lastContentCellStyle = css({
...contentCellStyle,
border: 0,
});
const lastContentCellStyle = css([
{
...contentCellStyle,
},
{
borderBottom: 0,
},
]);

const lastHeaderCellStyle = css({
padding: theme.base,
paddingLeft: 0,
width: 250,
fontWeight: theme.font.weight.medium,
border: 0,
});
const lastHeaderCellStyle = css([
{
...headerCellStyle,
},
{
borderBottomWidth: 0,
},
]);

const inUseByRelationDetailsStyle = css({
borderColor: theme.colors.lightShade,
Expand Down

0 comments on commit f5acacd

Please sign in to comment.