/
Nikmet
/
notepad-react
Обзор
Документация
Войти
/
Nikmet
/
notepad-react
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/JournalForm/JournalForm.module.css
55 строк
786 B
nikmet
почти все
04 июн 2024, 22:19
04 июн 2024, 22:19
536acee
Код
Авторство
О чём код?
.journal-form { display: flex; flex-direction: column; gap: 30px; } .form-row { display: flex; align-items: center; } .form-label { display: flex; align-items: center; gap: 20px; min-width: 150px; } .input-text { background: none; border: none; font-size: 14px; font-weight: 600; color: #fff; width: 100%; resize: none; overflow-x: hidden; } .input-text:active, .input-text:focus { outline: none; border: 1px solid #7e7e7e; } .input-text::placeholder { font-size: 14px; font-weight: 600; color: #7e7e7e; } .delete { border: none; background: none; cursor: pointer; transition: opacity 0.25s; } .delete:hover { opacity: 0.8; } .invalid { border: 1px solid #ff8080; }