/
kofeman
/
next-rest
Обзор
Документация
Войти
/
kofeman
/
next-rest
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Navigation/style.module.css
56 строк
852 B
Coffenight
complete about
07 янв 2026, 01:29
07 янв 2026, 01:29
0915501
Код
Авторство
О чём код?
.nav { display: flex; align-items: center; justify-content: center; gap: 8px 10px; border-radius: 100px; padding: 10px; /* width: 520px; */ height: 68px; background: var(--text-default); } @media (max-width: 600px) { .nav { flex-direction: column; width: auto; height: auto; border-radius: 30px; } } .nav-link { flex-shrink: 0; padding: 16px; font-family: var(--font-family); font-weight: 600; font-size: 16px; line-height: 100%; color: var(--text-inverse); } @media (max-width: 600px) { .nav-link { width: 100%; text-align: center; } } .active { border-radius: 100px; } .nav-link.active, .nav-link:hover { border-radius: 100px; /* background: #f8f8f8; */ /* background: #eeeeee; */ background: #dddddd; /* font-weight: 700; */ } .nav-link.primary { border-radius: 100px; background: #111; color: #fff; }