/
dedaMazai
/
chatAI
Обзор
Документация
Войти
/
dedaMazai
/
chatAI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/ui/InputDrop/InputDrop.module.scss
59 строк
1 KB
Andrey Chipizubov
fix
21 сен 2023, 00:35
21 сен 2023, 00:35
8172c69
Код
Авторство
О чём код?
.StyledInput { position: relative; min-width: 100px; width: 100%; max-width: 800px; height: 400px; display: flex; align-items: center; justify-content: center; background-color: transparent; border-radius: 8px; cursor: pointer; padding: 20px 14px 3px; border: dashed 2px var(--primary-color); color: var(--primary-color); flex-shrink: 0; .icon { margin: 2px; width: 20px; height: 20px; } .fileInput { position: absolute; z-index: -1; opacity: 0; display: block; width: 0; height: 0; } &:focus { outline: none; border: 1px solid var(--green-button-hover); } &::placeholder { color: var(--primary-color); font-weight: 600; font-size: 16px; line-height: 24px; letter-spacing: 2%; } &::file-selector-button { display: none; } .iconLogo { height: 80px; width: 110px; fill: var(--primary-color); } } .Wrapper.fullWidth { width: 100%; }