diff --git a/assets/css/styles.css b/assets/css/styles.css index d1401a5..34e8552 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -43,6 +43,8 @@ html[data-theme='light'] .technologies__logo { box-sizing: border-box; vertical-align: baseline; list-style: none; + scrollbar-width: thin; + scrollbar-color: var(--secondary-bg-color) transparent; } body { @@ -51,6 +53,19 @@ body { color: var(--text-color); } +::-webkit-scrollbar { + width: 0.5rem; +} + +::-webkit-scrollbar-track { + background-color: transparent; +} + +::-webkit-scrollbar-thumb { + background: var(--secondary-bg-color); + border-radius: 50rem; +} + a { text-decoration: none; color: var(--text-color);