💄 Make small visual changes on assets tab

This commit is contained in:
Eva
2023-07-06 09:47:30 +02:00
committed by Alonso Torres
parent 43dfdbb374
commit 1ff08bfe6a
59 changed files with 342 additions and 158 deletions

View File

@@ -163,3 +163,27 @@
color: var(--assets-item-name-foreground-color-hover);
}
}
.new-scrollbar {
::-webkit-scrollbar {
background-color: transparent;
cursor: pointer;
height: $s-12;
width: $s-12;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(170, 181, 186, 0.3);
background-clip: content-box;
border: $s-2 solid transparent;
border-radius: $br-8;
&:hover {
background-color: rgba(170, 181, 186, 0.7);
outline: none;
}
}
}