diff --git a/packages/interface/src/style.scss b/packages/interface/src/style.scss
index ad0bfca15..1f899eee3 100644
--- a/packages/interface/src/style.scss
+++ b/packages/interface/src/style.scss
@@ -14,6 +14,13 @@ body { font-family: "InterVariable", sans-serif; }
.no-scrollbar::-webkit-scrollbar {
display: none;
}
+
+.custom-scroll {
+ -ms-overflow-style: none; /* for Internet Explorer, Edge */
+ scrollbar-width: none; /* for Firefox */
+ overflow-y: scroll;
+}
+
.explorer-scroll {
&::-webkit-scrollbar {
height: 6px;
@@ -26,3 +33,27 @@ body { font-family: "InterVariable", sans-serif; }
@apply rounded-[6px] bg-gray-300 dark:bg-gray-550;
}
}
+.default-scroll {
+ &::-webkit-scrollbar {
+ height: 6px;
+ width: 8px;
+ }
+ &::-webkit-scrollbar-track {
+ @apply bg-transparent rounded-[6px];
+ }
+ &::-webkit-scrollbar-thumb {
+ @apply rounded-[6px] bg-gray-300 dark:bg-gray-550;
+ }
+}
+.page-scroll {
+ &::-webkit-scrollbar {
+ height: 6px;
+ width: 8px;
+ }
+ &::-webkit-scrollbar-track {
+ @apply bg-transparent rounded-[6px] my-[10px]
+ }
+ &::-webkit-scrollbar-thumb {
+ @apply rounded-[6px] bg-gray-300 dark:bg-gray-550;
+ }
+}