fixes
This commit is contained in:
@@ -60,7 +60,16 @@ export default function WorkflowPipeline({
|
||||
|
||||
return (
|
||||
<div className={`relative ${className}`}>
|
||||
<div className="flex items-center justify-between gap-4 overflow-x-auto pb-4">
|
||||
<div className="flex items-center justify-between gap-4 overflow-x-auto pb-4 scrollbar-hide">
|
||||
<style>{`
|
||||
.scrollbar-hide::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.scrollbar-hide {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
`}</style>
|
||||
{steps.map((step, index) => {
|
||||
const isLast = index === steps.length - 1;
|
||||
const nextStep = !isLast ? steps[index + 1] : null;
|
||||
|
||||
Reference in New Issue
Block a user