shell_styler/scss/_sidebar.scss
Candifloss b16764daa0 Add: CSS tweaks
- Add blinking cursor after prompt string
- Add thin scrollbar to sidebar
2025-08-20 21:14:12 +05:30

29 lines
558 B
SCSS

@use 'vars' as *;
.sidebar {
width: $sidebar-width;
height: calc(100vh - $footer-height);
background: $bg-darker;
padding: 1.5rem;
position: fixed;
left: 0;
top: 0;
overflow-y: auto;
color: $text-color;
// Scrollbar
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: $accent-color transparent;
h2 {
font-size: 1.1rem;
text-transform: uppercase;
letter-spacing: 1px;
color: $text-muted;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
}