/
guselnikov
/
inst
Обзор
Документация
Войти
/
guselnikov
/
inst
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
admin/src/components/auto-post/ScheduleDestinations.module.css
83 строки
1 KB
Viktor Guselnikov
first_commit
07 июл 2026, 11:54
07 июл 2026, 11:54
098126a
Код
Авторство
О чём код?
.destinations { display: flex; flex-direction: column; gap: 16px; } .header { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; } .title { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; } .subtitle { margin: 4px 0 0; font-size: 12px; color: var(--text-faint); } .list { display: flex; flex-direction: column; gap: 10px; } .row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; padding: 16px; border-radius: var(--radius-md); background: var(--bg-muted); border: 1px solid var(--border); } .removeBtn { width: 42px; height: 42px; border: none; border-radius: var(--radius-sm); background: transparent; color: var(--text-faint); cursor: pointer; display: grid; place-items: center; transition: background var(--transition), color var(--transition); } .removeBtn:hover:not(:disabled) { background: var(--danger-soft); color: var(--danger); } .removeBtn:disabled { opacity: 0.3; cursor: not-allowed; } .empty { margin: 0; padding: 20px; font-size: 13px; color: var(--text-faint); text-align: center; border-radius: var(--radius-md); background: var(--bg-muted); } @media (max-width: 640px) { .row { grid-template-columns: 1fr; } }