Skip to content

Commit 5f6b10f

Browse files
authored
fix: workflow tiles overrides css of other pages (#592)
1 parent d9ca243 commit 5f6b10f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.tile-basis {
1+
.workflow-tile-basis {
22
flex-basis: calc(33.333333% - 0.5rem);
33
}

keep-ui/app/workflows/workflow-tile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ function WorkflowTile({ workflow }: { workflow: Workflow }) {
386386
.filter(Boolean) as FullProvider[];
387387
const triggerTypes = workflow.triggers.map((trigger) => trigger.type);
388388
return (
389-
<div className="tile-basis mt-2.5">
389+
<div className="workflow-tile-basis mt-2.5">
390390
{isRunning && (
391391
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50">
392392
<Loading />

0 commit comments

Comments
 (0)