/
drndsv
/
TODO-React
Обзор
Документация
Войти
/
drndsv
/
TODO-React
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/App.module.css
67 строк
1014 B
dashk
Добавила влкдаки пользователи, категории и статусы и их функционал
02 июн 2025, 16:25
02 июн 2025, 16:25
814b9a1
Код
Авторство
О чём код?
.app { display: flex; flex-direction: column; height: 100vh; background-color: #f0fdf4; /* светлый фон */ font-family: Arial, sans-serif; margin: 0; padding: 0; box-sizing: border-box; overflow: hidden; } .main { display: flex; flex: 1; overflow: hidden; flex-direction: row; } .content { flex: 1; width: 100%; padding: 20px; background-color: #ffffff; border-left: 1px solid #cdeacd; overflow-y: auto; } .toolbar { margin-bottom: 20px; display: flex; justify-content: flex-end; } .addTaskButton { padding: 10px 16px; background-color: #aee5a3; color: #234d20; font-weight: bold; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.2s; } .addTaskButton:hover { background-color: #98d18c; } @media (max-width: 768px) { .main { flex-direction: column; } .toolbar { justify-content: center; } .addTaskButton { width: 100%; padding: 12px; } .content { padding: 10px; } }