drop down for code editor

This commit is contained in:
Виталий Лавшонок
2025-10-27 07:35:36 +03:00
parent e2a9e68666
commit 8fa48ef67e
7 changed files with 121 additions and 84 deletions

View File

@@ -34,4 +34,25 @@ body {
width: 100%;
height: 100%;
margin: 0;
}
}
/* Общий контейнер полосы прокрутки */
.thin-scrollbar::-webkit-scrollbar {
width: 4px; /* ширина вертикального */
}
/* Трек (фон) */
.thin-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
/* Ползунок (thumb) */
.thin-scrollbar::-webkit-scrollbar-thumb {
background: var(--color-liquid-light);
border-radius: 1000px;
cursor: pointer;
}