-
{children}
+
);
};
@@ -90,7 +96,6 @@ export type DocumentFlowFormContainerStepProps = {
};
export const DocumentFlowFormContainerStep = ({
- title,
step,
maxStep,
}: DocumentFlowFormContainerStepProps) => {
diff --git a/packages/ui/styles/theme.css b/packages/ui/styles/theme.css
index f56344ed1..fe7bfa087 100644
--- a/packages/ui/styles/theme.css
+++ b/packages/ui/styles/theme.css
@@ -93,3 +93,24 @@
mask-composite: exclude;
-webkit-mask-composite: xor;
}
+
+.custom-scrollbar::-webkit-scrollbar {
+ width: 6px;
+ background: transparent;
+ border-radius: 10px;
+ scrollbar-gutter: stable;
+}
+
+.custom-scrollbar::-webkit-scrollbar-track {
+ border-radius: 10px;
+}
+
+.custom-scrollbar::-webkit-scrollbar-thumb {
+ background: rgb(100 116 139 / 1);
+ border-radius: 10px;
+ width: 8px;
+}
+
+.custom-scrollbar::-webkit-scrollbar-thumb:hover {
+ background: rgb(100 116 139 / 0.5);
+}