/
DevDenzo
/
ERP
Обзор
Документация
Войти
/
DevDenzo
/
ERP
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Navs/DropdownNav/_dropdown-nav.less
78 строк
2 KB
Denis Sklyarskij
Инициализирован репозиторий
14 янв 2026, 23:32
14 янв 2026, 23:32
1df3d47
Код
Авторство
О чём код?
.dropdown-nav { display: flex; width: 100%; height: 500px; flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: center; max-height: 700px; overflow-x: hidden; overflow-y: scroll !important; padding-bottom: 22px; &__item-card { position: relative; width: calc(50% - 20px); height: 200px; background-color: #ffffff; border-radius: 16px; padding: 12px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); display: flex; align-items: flex-end; } &__button-toggle-popup { position: absolute; top: 0; right: 0; margin-top: 12px; margin-right: 20px; width: 45px; height: 40px; border-radius: 12px; background-color: transparent; border: none; color: transparent; transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; &:hover { background-color: rgba(158, 197, 254, 0.5); color: #4c58d6; } &:focus { box-shadow: none; background-color: rgba(158, 197, 254, 0.5); color: #4c58d6; } } &__item { width: 100%; text-align: center; border: none; padding: 6px; background-color: transparent; border-radius: 16px; cursor: pointer; &.is-active { background-color: #0dcaf0; color: #212529; } } &__item-text { color: #6c757d; font-size: 18px; font-weight: 500; max-width: 195px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } }