feat(datasets): update dataset highlight style

This commit is contained in:
Yann Amsellem
2025-06-06 16:03:05 +02:00
parent b094207455
commit b88878d29b
2 changed files with 11 additions and 1 deletions

View File

@@ -41,6 +41,15 @@
overflow-y: scroll;
}
.datasets::-webkit-scrollbar {
display: none;
}
.datasets {
-ms-overflow-style: none;
scrollbar-width: none;
}
.toolbar {
position: sticky;
top: 0px;

View File

@@ -38,7 +38,7 @@
const element = document.getElementById(id);
if (element) {
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
element.style.backgroundColor = 'yellow';
element.style.backgroundColor = 'hsl(60 40% 34% / 1)';
}
}
</script>
@@ -110,6 +110,7 @@
margin-top: 3px;
transition: background-color linear 0.25s;
scroll-margin-top: 30px;
}
.name span {