/
GEOSHEV
/
StudLab
Обзор
Документация
Войти
/
GEOSHEV
/
StudLab
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/components/sidebar/Sidebar.css
95 строк
2 KB
George
Обновил: Линтер по всем файлам
21 мар 2025, 14:25
21 мар 2025, 14:25
2b503d4
Код
Авторство
О чём код?
.sidebar { width: 300px; height: 90vh; background-color: #232532; box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; } .sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 12px; background-color: #272a38; } .sidebar-title { color: #ffffff; } .sidebar-search { width: 150px; padding: 5px; border-radius: 4px; border: none; background: #303549; color: #ffffff; } .sidebar-body { flex-grow: 1; overflow-y: auto; padding: 10px; overflow-y: scroll; max-height: 80vh; padding-right: 5px; } .sidebar-body-container { position: relative; height: 90vh; overflow: hidden; } .sidebar-item { padding: 12px; margin: 5px 0; background: #272a38; color: white; cursor: pointer; border-radius: 4px; transition: background 0.3s ease; position: relative; padding-right: 30px; } .sidebar-item:hover { background: rgba(0, 137, 255, 0.2); } .sidebar-item.selected { background: rgba(0, 137, 255, 0.4); } .lock-icon { position: absolute; right: 25px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; } .sidebar-body::-webkit-scrollbar { width: 5px; background: #272a38; border-radius: 19px; } .sidebar-body::-webkit-scrollbar-track { background: #272a38; border-radius: 19px; } .sidebar-body::-webkit-scrollbar-thumb { width: 5px; height: 173px; background: #303549; border-radius: 19px; } .sidebar-body::-webkit-scrollbar-thumb:hover { background: rgba(0, 137, 255, 0.4); }