convert to components
This commit is contained in:
37
frontend/src/app/components/fields/styles.module.css
Normal file
37
frontend/src/app/components/fields/styles.module.css
Normal file
@@ -0,0 +1,37 @@
|
||||
.input {
|
||||
display: flex;
|
||||
padding: 12px;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
align-self: stretch;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #616583;
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
font-family: Inter;
|
||||
font-size: 16px;
|
||||
outline: none;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: normal;
|
||||
caret-color: #575bc7;
|
||||
}
|
||||
.input:focus {
|
||||
border-radius: 6px;
|
||||
border: 1px solid #a8aac1;
|
||||
background: rgba(75, 79, 109, 0.25);
|
||||
}
|
||||
.input:hover {
|
||||
background: rgba(75, 79, 109, 0.25);
|
||||
}
|
||||
.input::placeholder {
|
||||
color: #85869b;
|
||||
font-family: Inter;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: normal;
|
||||
}
|
||||
Reference in New Issue
Block a user