Spaces:
Running
Running
File size: 976 Bytes
db37e88 15193ea db37e88 15193ea db37e88 15193ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | @import "../../../_variables.css";
.backgroundContainer {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border-radius: 10px;
margin-bottom: var(--spacing-md);
box-shadow: var(--shadow-default);
position: relative;
}
.input {
width: 100%;
outline: none;
padding: 16px 24px;
border-radius: 10px;
background: var(--background-input-default);
border: none;
color: var(--text-color-primary);
transition: background-color var(--transition-speed-slow) var(--bezier-custom);
}
.input::placeholder {
color: var(--text-color-secondary)
}
.input:focus {
background-color: var(--background-color-primary);
}
.iconContainer {
position: absolute;
right: var(--spacing-sm);
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.hiddenFileInput {
display: none;
}
|